DotNet.Core.csproj 1.4 KB

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