generated from jfversluis/Plugin.Maui.Feature
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
61 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,46 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<IsPackageProject Condition="!$([System.String]::new('$(MSBuildProjectName)').Contains('Sample'))">true</IsPackageProject> | ||
<IsPackageProject Condition="$([System.String]::new('$(MSBuildProjectName)').Contains('Sample'))">false</IsPackageProject> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" $(IsPackageProject) "> | ||
<Copyright>Copyright (c) Kori Francis</Copyright> | ||
<Authors>Kori Francis</Authors> | ||
<Owners>Kori Francis</Owners> | ||
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<RepositoryUrl>https://github.com/kfrancis/ocr</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
|
||
<Platform>AnyCPU</Platform> | ||
<Product>$(AssemblyName) ($(TargetFramework))</Product> | ||
|
||
<NoWarn>$(NoWarn);1591;1701;1702;1705;VSX1000;NU1603</NoWarn> | ||
|
||
<!-- Sourcelink --> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
|
||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
|
||
<PackageProjectUrl>https://github.com/kfrancis/ocr</PackageProjectUrl> | ||
<PackageIcon>icon.png</PackageIcon> | ||
|
||
<PackageDescription>Plugin which provides the ability to perform OCR on an image using platform API.</PackageDescription> | ||
<Deterministic>true</Deterministic> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>portable</DebugType> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<DebugType>portable</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition=" $(IsPackageProject) "> | ||
<None Include="..\..\nuget.png" Pack="true" PackagePath="icon.png"/> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<IsPackageProject Condition="!$([System.String]::new('$(MSBuildProjectName)').Contains('Sample'))">true</IsPackageProject> | ||
<IsPackageProject Condition="$([System.String]::new('$(MSBuildProjectName)').Contains('Sample'))">false</IsPackageProject> | ||
<MinVerAutoIncrement>minor</MinVerAutoIncrement> | ||
<MinVerBuildMetadata>build</MinVerBuildMetadata> | ||
<MinVerTagPrefix>v</MinVerTagPrefix> | ||
<MinVerVerbosity>normal</MinVerVerbosity> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" $(IsPackageProject) "> | ||
<Copyright>Copyright (c) Kori Francis</Copyright> | ||
<Authors>Kori Francis</Authors> | ||
<Owners>Kori Francis</Owners> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<RepositoryUrl>https://github.com/kfrancis/ocr</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<Platform>AnyCPU</Platform> | ||
<Product>$(AssemblyName) ($(TargetFramework))</Product> | ||
<NoWarn>$(NoWarn);1591;1701;1702;1705;VSX1000;NU1603</NoWarn> | ||
<!-- Sourcelink --> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageProjectUrl>https://github.com/kfrancis/ocr</PackageProjectUrl> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageDescription>Plugin which provides the ability to perform OCR on an image using platform API.</PackageDescription> | ||
<Deterministic>true</Deterministic> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>portable</DebugType> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<DebugType>portable</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
<ItemGroup Condition=" $(IsPackageProject) "> | ||
<None Include="..\..\nuget.png" Pack="true" PackagePath="icon.png"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters