-
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
Jenkins
committed
Jul 19, 2024
1 parent
130b8f4
commit 818bc4a
Showing
4 changed files
with
67 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,53 @@ | ||
<?xml version="1.0"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0-android;net8.0-ios;</TargetFrameworks> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>DocumentReaderSample</RootNamespace> | ||
<UseMaui>true</UseMaui> | ||
<SingleProject>true</SingleProject> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk> | ||
<NoWarn>MT4189;MT4178;NETSDK1201</NoWarn> | ||
<ApplicationTitle>DocumentReaderSample</ApplicationTitle> | ||
<ApplicationId Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">regula.DocumentReader</ApplicationId> | ||
<ApplicationId Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">com.regula.dr.fullrfid</ApplicationId> | ||
<CodesignEntitlements>Platforms\iOS\Entitlements.plist</CodesignEntitlements> | ||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>1</ApplicationVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">23.0</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4"/> | ||
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128"/> | ||
<MauiImage Include="Resources\Images\*"/> | ||
<MauiFont Include="Resources\Fonts\*"/> | ||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0"/> | ||
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.6"/> | ||
</ItemGroup> | ||
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'"> | ||
<PackageReference Include="Xamarin.DocumentReader.BTDevice.iOS" Version="6.8.318"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Api.iOS" Version="7.2.3545"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Core.FullRfid.iOS" Version="7.2.9111"/> | ||
</ItemGroup> | ||
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'"> | ||
<PackageReference Include="Xamarin.DocumentReader.BTDevice.Android" Version="1.1.394"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Api.Android" Version="7.2.9835"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Core.FullRfid.Android" Version="7.2.10867"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AndroidAsset Include="Resources\Raw\regula.license"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<BundleResource Include="Resources\Raw\regula.license"/> | ||
</ItemGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net8.0-android;net8.0-ios;</TargetFrameworks> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>DocumentReaderSample</RootNamespace> | ||
<UseMaui>true</UseMaui> | ||
<SingleProject>true</SingleProject> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk> | ||
<NoWarn>MT4189;MT4178;NETSDK1201;XC0022</NoWarn> | ||
|
||
<ApplicationTitle>DocumentReaderSample</ApplicationTitle> | ||
<ApplicationId Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">regula.DocumentReader</ApplicationId> | ||
<ApplicationId Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">com.regula.dr.fullrfid</ApplicationId> | ||
<CodesignEntitlements>Platforms\iOS\Entitlements.plist</CodesignEntitlements> | ||
|
||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>1</ApplicationVersion> | ||
|
||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">23.0</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> | ||
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> | ||
<MauiImage Include="Resources\Images\*" /> | ||
<MauiFont Include="Resources\Fonts\*" /> | ||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.7" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'"> | ||
<PackageReference Include="Xamarin.DocumentReader.BTDevice.iOS" Version="6.8.318"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Api.iOS" Version="7.2.3545"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Core.FullAuthRFID.iOS" Version="7.3.365"/> | ||
</ItemGroup> | ||
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'"> | ||
<PackageReference Include="Xamarin.DocumentReader.BTDevice.Android" Version="1.1.394"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Api.Android" Version="7.2.9835"/> | ||
<PackageReference Include="Xamarin.DocumentReader.Core.FullAuthRFID.Android" Version="7.3.365"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<AndroidAsset Include="Resources\Raw\regula.license" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<BundleResource Include="Resources\Raw\regula.license" /> | ||
</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
This file was deleted.
Oops, something went wrong.