luban/src/Luban.Client/Luban.Client.csproj

34 lines
906 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<StartupObject>Luban.Client.Program</StartupObject>
<PackageProjectUrl>https://github.com/focus-creative-games/luban</PackageProjectUrl>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Scripts\**" />
<EmbeddedResource Remove="Scripts\**" />
<None Remove="Scripts\**" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Luban.Common\Luban.Common.csproj" />
</ItemGroup>
</Project>