| 123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Library</OutputType>
- <Nullable>enable</Nullable>
- <Configurations>Debug;Release;Publish</Configurations>
- <Platforms>AnyCPU</Platforms>
- </PropertyGroup>
- <PropertyGroup>
- <!-- Default for Windows/Linux (and anything non-macOS): -->
- <TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
- </PropertyGroup>
- <PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
- <!-- On macOS, include iOS as well: -->
- <TargetFrameworks>net8.0-ios;net8.0;netstandard2.1</TargetFrameworks>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />
- <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />
- </ItemGroup>
- </Project>
|