Cauldron/Cauldron.Macos/Cauldron.Macos.csproj

52 lines
2.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>
2023-07-21 20:11:56 +00:00
<ApplicationTitle>Cauldron</ApplicationTitle>
<ApplcationId>com.neilbrommer.cauldron</ApplcationId>
2023-07-19 19:30:39 +00:00
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
2023-07-20 21:30:10 +00:00
<AccentColor>AccentColor</AccentColor>
2023-07-19 19:30:39 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<CreatePackage>false</CreatePackage>
<UseSGen>false</UseSGen>
2023-07-20 21:30:10 +00:00
<WarningLevel>4</WarningLevel>
<LinkMode>None</LinkMode>
2023-07-21 20:11:56 +00:00
<AssemblyName>Cauldron</AssemblyName>
2023-07-19 19:30:39 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<CreatePackage>false</CreatePackage>
<UseSGen>false</UseSGen>
2023-07-20 21:30:10 +00:00
<LinkMode>None</LinkMode>
2023-07-19 19:30:39 +00:00
</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>
2023-07-21 20:11:56 +00:00
<ProjectReference Include="..\Cauldron.Core\Cauldron.Core.csproj" />
2023-07-19 19:30:39 +00:00
</ItemGroup>
</Project>