forked from Eilon/MauiHybridWebView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HybridWebView.csproj
62 lines (52 loc) · 3.11 KB
/
HybridWebView.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="KnownStaticFiles\HybridWebView.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="KnownStaticFiles\HybridWebView.js" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<!-- Change these two values to control the version -->
<VersionMain>1.0.0</VersionMain>
<VersionPrelease>-preview3</VersionPrelease>
</PropertyGroup>
<PropertyGroup>
<Version>$(VersionMain)</Version>
<AssemblyVersion>$(VersionMain)</AssemblyVersion>
<FileVersion>$(VersionMain)</FileVersion>
<PackageId>EJL.MauiHybridWebView</PackageId>
<Description>A HybridWebView control for .NET MAUI that enables embedding web UI (HTML/JS/CSS) in cross-platform native apps.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Eilon Lipton</Authors>
<NeutralLanguage>en</NeutralLanguage>
<RepositoryUrl>https://github.com/Eilon/MauiCSharpInteropWebView.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/Eilon/MauiCSharpInteropWebView</PackageProjectUrl>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<Copyright>© 2023 Eilon Lipton</Copyright>
<PackageVersion>$(VersionMain)$(VersionPrelease)</PackageVersion>
<PackageOutputPath>$(MSBuildThisFileDirectory)..\artifacts</PackageOutputPath>
<LicenseFile>$(MSBuildThisFileDirectory)..\LICENSE</LicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>