| 12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="archive\**" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Remove="archive\**" />
- </ItemGroup>
- <ItemGroup>
- <None Remove="archive\**" />
- <None Remove=".gitignore" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />
- </ItemGroup>
- </Project>
|