DotNet.Core.csproj 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.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. <Optimize>false</Optimize>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  21. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  22. <DefineConstants>DOTNET</DefineConstants>
  23. <OutputPath>..\..\Bin\</OutputPath>
  24. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  28. <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
  29. </ItemGroup>
  30. </Project>