You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
615 B
21 lines
615 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-macos</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<OutputType>Exe</OutputType>
|
|
<RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers>
|
|
<SupportedOSPlatformVersion>10.15</SupportedOSPlatformVersion>
|
|
<RollForward>LatestMajor</RollForward>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Eto.Platform.macOS" Version="2.8.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Atomic\Atomic.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|