File size: 470 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Generates C# typed bindings for .resx files</Description>
<TargetFramework>net11.0</TargetFramework>
<AssemblyName>resgen</AssemblyName>
<OutputType>Exe</OutputType>
<TieredCompilation>true</TieredCompilation>
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
<RuntimeIdentifiers>win-x86;win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
</PropertyGroup>
</Project>
|