123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net9.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>10</LangVersion>
- <AssemblyName>App</AssemblyName>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>true</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Model\DotNet.Model.csproj" />
- </ItemGroup>
- </Project>
|