DotNet.Core.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. <DefineConstants>TRACE;APPS</DefineConstants>
  14. <OutputPath>..\..\Bin\</OutputPath>
  15. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. <DefineConstants>TRACE;APPS</DefineConstants>
  20. <OutputPath>..\..\Bin\</OutputPath>
  21. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <Compile Include="..\..\Unity\Assets\Scripts\Core\**\*.cs">
  25. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  26. </Compile>
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
  30. </ItemGroup>
  31. </Project>