forked from OutSystems/WebView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
30 lines (27 loc) · 1.02 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<TargetDotnetVersion>net8.0</TargetDotnetVersion>
<Platforms>x64;ARM64</Platforms>
<AvaloniaVersion>11.2.0</AvaloniaVersion>
<CefGlueVersion>120.6099.207</CefGlueVersion>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<Version>3.120.7</Version>
<Authors>OutSystems</Authors>
<Product>WebViewControl</Product>
<Copyright>Copyright © OutSystems 2023</Copyright>
<PackageProjectUrl>https://github.com/OutSystems/WebView</PackageProjectUrl>
<PackageOutputPath>$(MSBuildProjectDirectory)\..\nuget</PackageOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == '' or '$(Platform)' == 'x64'">
<PackageSuffix />
<CefGluePackageSuffix />
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == 'ARM64'">
<PackageSuffix>-ARM64</PackageSuffix>
<CefGluePackageSuffix>.ARM64</CefGluePackageSuffix>
</PropertyGroup>
</Project>