Cauldron/Papercut.Macos/Papercut.Macos.csproj

47 lines
2 KiB
XML
Raw Normal View History

2023-07-19 19:30:39 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-macos</TargetFramework>
<OutputType>Exe</OutputType>
<ApplicationTitle>Papercut</ApplicationTitle>
<ApplcationId>com.neilbrommer.papercut</ApplcationId>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<CreatePackage>false</CreatePackage>
<UseSGen>false</UseSGen>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<CreatePackage>false</CreatePackage>
<UseSGen>false</UseSGen>
</PropertyGroup>
<ItemGroup>
<ImageAsset Update="Assets.xcassets\AppIcon.appiconset\AppIcon-512%402x.png">
<Link>Assets.xcassets\AppIcon.appiconset\AppIcon-512%402x.png</Link>
</ImageAsset>
<ImageAsset Update="Assets.xcassets\AppIcon.appiconset\AppIcon-32%402x.png">
<Link>Assets.xcassets\AppIcon.appiconset\AppIcon-32%402x.png</Link>
</ImageAsset>
<ImageAsset Update="Assets.xcassets\AppIcon.appiconset\AppIcon-16%402x.png">
<Link>Assets.xcassets\AppIcon.appiconset\AppIcon-16%402x.png</Link>
</ImageAsset>
<ImageAsset Update="Assets.xcassets\AppIcon.appiconset\AppIcon-256%402x.png">
<Link>Assets.xcassets\AppIcon.appiconset\AppIcon-256%402x.png</Link>
</ImageAsset>
<ImageAsset Update="Assets.xcassets\AppIcon.appiconset\AppIcon-128%402x.png">
<Link>Assets.xcassets\AppIcon.appiconset\AppIcon-128%402x.png</Link>
</ImageAsset>
</ItemGroup>
<ItemGroup>
<Compile Update="MainWindow.designer.cs">
<DependentUpon>MainWindow.cs</DependentUpon>
</Compile>
2023-07-19 22:09:25 +00:00
<Compile Update="AppDelegate.designer.cs">
<DependentUpon>AppDelegate.cs</DependentUpon>
2023-07-19 19:30:39 +00:00
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Papercut.Core\Papercut.Core.csproj" />
</ItemGroup>
</Project>