DotNet.App.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>10</LangVersion>
  6. <AssemblyName>App</AssemblyName>
  7. <TargetFramework>net8.0</TargetFramework>
  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>False</Optimize>
  18. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  21. <DefineConstants>DOTNET</DefineConstants>
  22. <OutputPath>..\..\Bin\</OutputPath>
  23. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. <Optimize>False</Optimize>
  26. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
  30. <ProjectReference Include="..\Model\DotNet.Model.csproj" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Reference Include="Ice">
  34. <HintPath>..\library\Ice.dll</HintPath>
  35. </Reference>
  36. </ItemGroup>
  37. </Project>