12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>10</LangVersion>
- <AssemblyName>App</AssemblyName>
- <TargetFramework>net8.0</TargetFramework>
- </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>False</Optimize>
- <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <Optimize>False</Optimize>
- <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
- <ProjectReference Include="..\Model\DotNet.Model.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Ice">
- <HintPath>..\library\Ice.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|