19 lines
539 B
XML
19 lines
539 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>PinkConnection2_TestApp.Mac</RootNamespace>
|
|
|
|
<RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PinkConnection2-TestApp\PinkConnection2-TestApp.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Eto.Platform.Mac64" Version="2.9.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|