84f337b046
* Update to .NET 6 I update not only samples, but also codegen tools, because .NET 5 is not LTS and in 4 month would be out Closes #306 * Add .NET 6.0 support to actual templates * Dont forget about FSharp and VB.NET * Revert choice option in parameters
19 lines
463 B
XML
19 lines
463 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>$(FrameworkParameter)</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="**\*.glade" />
|
|
<EmbeddedResource Include="**\*.glade">
|
|
<LogicalName>%(Filename)%(Extension)</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GtkSharp" Version="3.24.24.*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|