DotNet.App.csproj 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net9.0</TargetFramework>
  5. <RootNamespace>ET</RootNamespace>
  6. <LangVersion>10</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="..\Model\DotNet.Model.csproj" />
  27. </ItemGroup>
  28. </Project>