Apps.Core.csproj 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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 Condition=" '$(Configuration)' == 'Debug' ">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. <DefineConstants>TRACE;APPS</DefineConstants>
  10. <OutputPath>..\..\Bin\</OutputPath>
  11. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  14. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  15. <DefineConstants>TRACE;APPS</DefineConstants>
  16. <OutputPath>..\..\Bin\</OutputPath>
  17. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <Compile Include="..\..\Unity\Assets\Core\**\*.cs">
  21. <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
  22. </Compile>
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\ThirdParty\Apps.ThirdParty.csproj" />
  26. </ItemGroup>
  27. </Project>