1
0
mirror of synced 2024-11-15 03:27:40 +01:00
ImHex/plugins/script_loader/templates/CSharp/ImHexScript/ImHexScript.csproj

26 lines
735 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Main</AssemblyName>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<SelfContained>true</SelfContained>
</PropertyGroup>
<PropertyGroup>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ImGui.NET" Version="1.89.7.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ImHexLibrary\ImHexLibrary.csproj" />
</ItemGroup>
</Project>