-
Notifications
You must be signed in to change notification settings - Fork 8
/
Directory.Build.props
36 lines (31 loc) · 1.21 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
31
32
33
34
35
36
<Project>
<PropertyGroup>
<TargetDotnetVersion>net8.0</TargetDotnetVersion>
<Platforms>x64;ARM64</Platforms>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<Version>3.120.7</Version>
<Authors>OutSystems</Authors>
<Product>ReactView</Product>
<Copyright>Copyright © OutSystems 2023</Copyright>
<PackageProjectUrl>https://github.com/OutSystems/ReactView</PackageProjectUrl>
<PackageOutputPath>$(MSBuildProjectDirectory)\..\nuget</PackageOutputPath>
<!-- File with mtime of last successful npm install -->
<NpmInstallStampFile>.npm-install-stamp</NpmInstallStampFile>
</PropertyGroup>
<PropertyGroup>
<AvaloniaVersion>11.0.10</AvaloniaVersion>
<WebViewVersion>3.120.7</WebViewVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == '' or '$(Platform)' == 'x64'">
<PackageSuffix />
<WebViewPackageSuffix />
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == 'ARM64'">
<PackageSuffix>-ARM64</PackageSuffix>
<WebViewPackageSuffix>-ARM64</WebViewPackageSuffix>
</PropertyGroup>
<ItemGroup>
<PackageJsons Include="**/package.json" Exclude="**/node_modules/**/*.*"/>
</ItemGroup>
</Project>