You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
903 B
30 lines
903 B
1 month ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<EnableDefaultContentItems>false</EnableDefaultContentItems>
|
||
|
<ApplicationIcon />
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<StartupObject />
|
||
|
<EnableNETAnalyzers>false</EnableNETAnalyzers>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
|
<PlatformTarget>x64</PlatformTarget>
|
||
|
<OutputPath>bin\Debug\</OutputPath>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Include="..\..\..\out\GameCs.cs">
|
||
|
<Link>Protocol\GameCs.cs</Link>
|
||
|
</Compile>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||
|
<Target Name="BeforeBuild">
|
||
|
</Target>
|
||
|
<Target Name="AfterBuild">
|
||
|
</Target>
|
||
|
-->
|
||
|
</Project>
|