@nativescript/windows 0.1.0-alpha.2 → 0.1.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/framework/__PROJECT_NAME__/__PROJECT_NAME__.csproj +14 -6
- package/framework/libs/arm64/nativescript.dll +0 -0
- package/framework/libs/devtools/arm64/nativescript.dll +0 -0
- package/framework/libs/devtools/x64/nativescript.dll +0 -0
- package/framework/libs/x64/nativescript.dll +0 -0
- package/package.json +1 -1
|
@@ -19,6 +19,14 @@
|
|
|
19
19
|
<NSWindowsRoot>$(MSBuildProjectDirectory)\..</NSWindowsRoot>
|
|
20
20
|
</PropertyGroup>
|
|
21
21
|
|
|
22
|
+
<PropertyGroup>
|
|
23
|
+
<!-- Derived library platform for selecting prebuilt native libs.
|
|
24
|
+
Prefer $(Platform); fall back to trimming 'win-' from $(RuntimeIdentifier); default to x64. -->
|
|
25
|
+
<NSLibPlatform Condition="'$(Platform)' != ''">$(Platform)</NSLibPlatform>
|
|
26
|
+
<NSLibPlatform Condition="'$(NSLibPlatform)' == '' and '$(RuntimeIdentifier)' != ''">$([System.Text.RegularExpressions.Regex]::Replace('$(RuntimeIdentifier)','^win-',''))</NSLibPlatform>
|
|
27
|
+
<NSLibPlatform Condition="'$(NSLibPlatform)' == ''">x64</NSLibPlatform>
|
|
28
|
+
</PropertyGroup>
|
|
29
|
+
|
|
22
30
|
<ItemGroup>
|
|
23
31
|
<AppxManifest Include="Package.appxmanifest" />
|
|
24
32
|
<Content Include="Properties\Default.rd.xml" />
|
|
@@ -33,16 +41,16 @@
|
|
|
33
41
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
34
42
|
</Content>
|
|
35
43
|
|
|
36
|
-
<!-- Debug: devtools-enabled runtime DLL -->
|
|
37
|
-
<Content Include="$(NSWindowsRoot)\libs\devtools\$(
|
|
38
|
-
Condition="'$(Configuration)' == 'Debug'">
|
|
44
|
+
<!-- Debug: devtools-enabled runtime DLL (platform fallback via NSLibPlatform) -->
|
|
45
|
+
<Content Include="$(NSWindowsRoot)\libs\devtools\$(NSLibPlatform)\nativescript.dll"
|
|
46
|
+
Condition="'$(Configuration)' == 'Debug' and Exists('$(NSWindowsRoot)\libs\devtools\$(NSLibPlatform)\nativescript.dll')">
|
|
39
47
|
<Link>nativescript.dll</Link>
|
|
40
48
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
41
49
|
</Content>
|
|
42
50
|
|
|
43
|
-
<!-- Release: production runtime DLL -->
|
|
44
|
-
<Content Include="$(NSWindowsRoot)\libs\$(
|
|
45
|
-
Condition="'$(Configuration)' != 'Debug'">
|
|
51
|
+
<!-- Release: production runtime DLL (platform fallback via NSLibPlatform) -->
|
|
52
|
+
<Content Include="$(NSWindowsRoot)\libs\$(NSLibPlatform)\nativescript.dll"
|
|
53
|
+
Condition="'$(Configuration)' != 'Debug' and Exists('$(NSWindowsRoot)\libs\$(NSLibPlatform)\nativescript.dll')">
|
|
46
54
|
<Link>nativescript.dll</Link>
|
|
47
55
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
48
56
|
</Content>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|