DotNet.Loader.csproj 1.5 KB

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