|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net35;net40;net5.0-windows;net6.0-windows</TargetFrameworks> |
| 5 | + <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 6 | + <UseWindowsForms Condition="'$(TargetFramework)' == 'net5.0-windows' or '$(TargetFramework)' == 'net6.0-windows'">true</UseWindowsForms> |
| 7 | + <UseWPF Condition="'$(TargetFramework)' == 'net5.0-windows' or '$(TargetFramework)' == 'net6.0-windows'">true</UseWPF> |
| 8 | + <DefineConstants Condition="'$(TargetFramework)' == 'net5.0-windows'">$(DefineConstants);NET5_0_WINDOWS</DefineConstants> |
| 9 | + <CheckEolTargetFramework>false</CheckEolTargetFramework> |
| 10 | + <DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder> |
| 11 | + </PropertyGroup> |
| 12 | + |
| 13 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 14 | + <NoWarn /> |
| 15 | + </PropertyGroup> |
| 16 | + |
| 17 | + <PropertyGroup> |
| 18 | + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| 19 | + <PackageId>QRCoder.Xaml</PackageId> |
| 20 | + <Version>1.4.3</Version> |
| 21 | + <Authors>Raffael Herrmann</Authors> |
| 22 | + <PackageOwners>Raffael Herrmann</PackageOwners> |
| 23 | + <AssemblyName>QRCoder.Xaml</AssemblyName> |
| 24 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 25 | + <PackageProjectUrl>https://github.com/codebude/QRCoder.Xaml/</PackageProjectUrl> |
| 26 | + <PackageIcon>nuget-icon-xaml.png</PackageIcon> |
| 27 | + <PackageReadmeFile>nuget-readme-xaml.md</PackageReadmeFile> |
| 28 | + <PackageTags>c# csharp qr QRCoder.Xaml qrcode qr-generator qr-code-generator</PackageTags> |
| 29 | + <RepositoryUrl>https://github.com/codebude/QRCoder.Xaml.git</RepositoryUrl> |
| 30 | + <RepositoryType>git</RepositoryType> |
| 31 | + <Description>QRCoder.Xaml is the XamlQRCode-extension for the popular QRCoder .NET library.</Description> |
| 32 | + </PropertyGroup> |
| 33 | + |
| 34 | + <ItemGroup> |
| 35 | + <None Include="Assets\nuget-icon-xaml.png" Pack="true" PackagePath="\" /> |
| 36 | + <None Include="Assets\nuget-readme-xaml.md" Pack="true" PackagePath="\" /> |
| 37 | + </ItemGroup> |
| 38 | + |
| 39 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net35' or '$(TargetFramework)' == 'net40' "> |
| 40 | + <Reference Include="PresentationCore" /> |
| 41 | + <Reference Include="PresentationFramework" /> |
| 42 | + <Reference Include="WindowsBase" /> |
| 43 | + </ItemGroup> |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <ProjectReference Include="..\QRCoder\QRCoder.csproj" /> |
| 47 | + </ItemGroup> |
| 48 | + |
| 49 | + <PropertyGroup> |
| 50 | + <FrameworkPathOverride Condition="'$(TargetFramework)' == 'net35'">$(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride> |
| 51 | + <AutomaticallyUseReferenceAssemblyPackages Condition=" '$(TargetFramework)' == 'net35' ">false</AutomaticallyUseReferenceAssemblyPackages> |
| 52 | + <SignAssembly>true</SignAssembly> |
| 53 | + <AssemblyOriginatorKeyFile>QRCoder.XamlStrongName.snk</AssemblyOriginatorKeyFile> |
| 54 | + <DelaySign>false</DelaySign> |
| 55 | + </PropertyGroup> |
| 56 | + |
| 57 | +</Project> |
0 commit comments