DotNet.App.csproj 1.1 KB

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