naps2/NAPS2.App.Mac/NAPS2.App.Mac.csproj

40 lines
1.3 KiB
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-11-18 22:43:50 +03:00
<TargetFramework>net8-macos10.15</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>NAPS2</RootNamespace>
<AssemblyName>NAPS2</AssemblyName>
<ApplicationIcon>../NAPS2.Lib/Icons/favicon.ico</ApplicationIcon>
<RuntimeIdentifiers Condition="$([MSBuild]::IsOSPlatform('OSX'))">osx-x64;osx-arm64</RuntimeIdentifiers>
<TrimMode>partial</TrimMode>
<Title>NAPS2 - Not Another PDF Scanner</Title>
<Product>NAPS2 - Not Another PDF Scanner</Product>
</PropertyGroup>
2022-12-20 01:17:28 +03:00
<Import Project="..\NAPS2.Setup\targets\CommonTargets.targets" />
<Import Project="..\NAPS2.Setup\targets\SdkUsers.targets" />
<ItemGroup>
2024-01-31 05:31:36 +03:00
<PackageReference Include="NAPS2.Pdfium.Binaries" Version="1.1.0" />
<PackageReference Include="NAPS2.Sane.Binaries" Version="1.1.0" />
<PackageReference Include="NAPS2.Tesseract.Binaries" Version="1.2.0" />
2022-10-17 00:24:33 +03:00
<ProjectReference Include="..\NAPS2.Lib.Mac\NAPS2.Lib.Mac.csproj" />
2022-10-17 00:24:33 +03:00
<PackageReference Include="Eto.Platform.macOS" Version="2.8.3" />
</ItemGroup>
<ItemGroup>
2022-12-21 21:37:51 +03:00
<Content Include="..\NAPS2.Setup\appsettings.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>appsettings.xml</Link>
2022-12-21 21:37:51 +03:00
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Icon.icns" />
</ItemGroup>
</Project>