Skip to content

Commit 483bf74

Browse files
committed
Build changes
1 parent a344d8a commit 483bf74

File tree

5 files changed

+10
-18
lines changed

5 files changed

+10
-18
lines changed

BuildAll.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Main branch points to the external feed.
1818

1919
Param(
2020
[string]$PackageVersion = "1.1.1.1",
21-
[string]$Platform = "x64",
21+
[string]$Platform = "x86",
2222
[string]$Configuration = "Release",
2323
[string]$AzureBuildStep = "all",
2424
[string]$OutputDirectory = (Split-Path $MyInvocation.MyCommand.Path) + "\BuildOutput",

dev/MRTCore/mrt/Microsoft.Windows.ApplicationModel.Resources/src/Microsoft.Windows.ApplicationModel.Resources.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,7 @@
8484
<ItemGroup>
8585
<ResourceCompile Include="Microsoft.Windows.ApplicationModel.Resources.rc" />
8686
</ItemGroup>
87+
<ItemGroup>
88+
<Natvis Include="$(MSBuildThisFileDirectory)..\..\natvis\wil.natvis" />
89+
</ItemGroup>
8790
</Project>

dev/MRTCore/mrt/Microsoft.Windows.ApplicationModel.Resources/unittests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
[assembly: AssemblyCulture("")]
1616
[assembly: AssemblyMetadata("TargetPlatform","UAP")]
1717

18-
[assembly: AssemblyVersion("1.0.0.0")]
19-
[assembly: AssemblyFileVersion("1.0.0.0")]
18+
[assembly: AssemblyVersion("1.7")]
19+
[assembly: AssemblyFileVersion("1.7")]
2020
[assembly: ComVisible(false)]
Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
// WARNING: the values in the AssemblyInfo file are defaults for use in dev-loop.
2-
// This file is meant to be overwritten by GenerateVersionInfo.ps1
3-
// Please modify the generation script in GenerateVersionInfo.ps1 to change any fields or values.
4-
5-
// Copyright (c) Microsoft Corporation and Contributors.
6-
// Licensed under the MIT License.
7-
81
using System.Reflection;
92
using System.Runtime.CompilerServices;
103
using System.Runtime.InteropServices;
@@ -13,7 +6,7 @@
136
[assembly: AssemblyProduct("Windows App SDK")]
147
[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation. All rights reserved.")]
158

16-
[assembly: AssemblyVersion("0.0")]
17-
[assembly: AssemblyFileVersion("0.0")]
9+
[assembly: AssemblyVersion("1.7")]
10+
[assembly: AssemblyFileVersion("1.7")]
1811

1912
[assembly: AssemblyMetadata("IsTrimmable", "True")]

eng/common/VersionInfo/AssemblyInfo.ver

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
// WARNING: the values in the AssemblyInfo file are defaults for use in dev-loop.
2-
// This file is meant to be overwritten by GenerateVersionInfo.ps1
3-
// Please modify the generation script in GenerateVersionInfo.ps1 to change any fields or values.
4-
51
// Copyright (c) Microsoft Corporation and Contributors.
62
// Licensed under the MIT License.
73

@@ -10,11 +6,11 @@
106
#define STR2(a,b) STR1(a) DELIM STR1(b)
117

128
#ifndef WINDOWSAPPSDK_RELEASE_MAJOR
13-
#define WINDOWSAPPSDK_RELEASE_MAJOR 0
9+
#define WINDOWSAPPSDK_RELEASE_MAJOR 1
1410
#endif
1511

1612
#ifndef WINDOWSAPPSDK_RELEASE_MINOR
17-
#define WINDOWSAPPSDK_RELEASE_MINOR 0
13+
#define WINDOWSAPPSDK_RELEASE_MINOR 7
1814
#endif
1915

2016
#define WINDOWSAPPSDK_PRODUCT_VERSION WINDOWSAPPSDK_RELEASE_MAJOR, WINDOWSAPPSDK_RELEASE_MINOR

0 commit comments

Comments
 (0)