Apps.Core.csproj 982 B

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