47 lines
2 KiB
XML
47 lines
2 KiB
XML
|
<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>
|
||
|
<Compile Update="ScriptViewController.designer.cs">
|
||
|
<DependentUpon>ScriptViewController.cs</DependentUpon>
|
||
|
</Compile>
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Papercut.Core\Papercut.Core.csproj" />
|
||
|
</ItemGroup>
|
||
|
</Project>
|