DotNet.Core.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <AssemblyName>Core</AssemblyName>
  7. <RootNamespace>ET</RootNamespace>
  8. <LangVersion>10</LangVersion>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  12. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. <DefineConstants>DOTNET</DefineConstants>
  17. <OutputPath>..\..\Bin\</OutputPath>
  18. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  19. <Optimize>false</Optimize>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. <DefineConstants>DOTNET</DefineConstants>
  24. <OutputPath>..\..\Bin\</OutputPath>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
  29. <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Folder Include="Core\" />
  33. </ItemGroup>
  34. </Project>