20 lines
489 B
XML
Executable File
20 lines
489 B
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Icon.icns" />
|
|
<ProjectReference Include="..\SimpleNotes\SimpleNotes.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Eto.Platform.Mac64" Version="2.8.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|