DotNet.Core.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>DOTNET</DefineConstants>
  16. <OutputPath>..\..\Bin\</OutputPath>
  17. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. <DefineConstants>DOTNET</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="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
  32. <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
  33. </ItemGroup>
  34. </Project>