File tree Expand file tree Collapse file tree 4 files changed +11
-12
lines changed Expand file tree Collapse file tree 4 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 22
22
<GenerateDocumentationFile >true</GenerateDocumentationFile >
23
23
<PackageOutputPath >$(RepositoryDirectory)bin\nupkg</PackageOutputPath >
24
24
<GenerateLibraryLayout Condition =" $(IsWinUIProject)" >true</GenerateLibraryLayout >
25
- <!-- Turned off until 16.11 (https://github.com/dotnet/msbuild/pull/6676) -->
26
- <!-- <TreatWarningsAsErrors Condition="'$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>-->
25
+ <TreatWarningsAsErrors Condition =" '$(Configuration)' == 'Release'" >true</TreatWarningsAsErrors >
27
26
</PropertyGroup >
28
27
</When >
29
28
<Otherwise >
Original file line number Diff line number Diff line change 9
9
- rel/*
10
10
11
11
pool :
12
- vmImage : windows-2019
12
+ vmImage : windows-2022
13
13
14
14
variables :
15
15
BuildConfiguration : Release
@@ -22,15 +22,15 @@ jobs:
22
22
steps :
23
23
- task : BatchScript@1
24
24
inputs :
25
- filename : " C:\\ Program Files (x86) \\ Microsoft Visual Studio\\ 2019 \\ Enterprise \\ Common7\\ Tools\\ VsDevCmd.bat"
25
+ filename : " C:\\ Program Files\\ Microsoft Visual Studio\\ 2022 \\ Preview \\ Common7\\ Tools\\ VsDevCmd.bat"
26
26
arguments : -no_logo
27
27
modifyEnvironment : true
28
28
displayName : Setup Environment Variables
29
29
30
30
- task : NuGetToolInstaller@1
31
- displayName : Use NuGet 5.8.1
31
+ displayName : Use NuGet 5.11.0
32
32
inputs :
33
- versionSpec : 5.8.1
33
+ versionSpec : 5.11.0
34
34
35
35
- task : NuGetAuthenticate@0
36
36
displayName : ' NuGet Authenticate'
40
40
- task : UseDotNet@2
41
41
displayName : ' Install .NET Core SDK'
42
42
inputs :
43
- version : 5.0.402
43
+ version : 5.0.403
44
44
performMultiLevelLookup : true
45
45
46
46
- task : DotNetCoreCLI@2
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ void RetrieveVersion()
109
109
void UpdateToolsPath ( MSBuildSettings buildSettings )
110
110
{
111
111
// Workaround for https://github.com/cake-build/cake/issues/2128
112
- var vsInstallation = VSWhereLatest ( new VSWhereLatestSettings { Requires = "Microsoft.Component.MSBuild" , IncludePrerelease = false } ) ;
112
+ var vsInstallation = VSWhereLatest ( new VSWhereLatestSettings { Requires = "Microsoft.Component.MSBuild" , IncludePrerelease = true } ) ;
113
113
114
114
if ( vsInstallation != null )
115
115
{
@@ -145,7 +145,7 @@ Task("Verify")
145
145
{
146
146
VerifyHeaders ( false ) ;
147
147
148
- StartPowershellFile ( "./Find-WindowsSDKVersions.ps1" ) ;
148
+ // StartPowershellFile("./Find-WindowsSDKVersions.ps1");
149
149
} ) ;
150
150
151
151
Task ( "Version" )
@@ -268,7 +268,7 @@ Task("Test")
268
268
Information ( "\n Running Unit Tests" ) ;
269
269
var vswhere = VSWhereLatest ( new VSWhereLatestSettings
270
270
{
271
- IncludePrerelease = false
271
+ IncludePrerelease = true
272
272
} ) ;
273
273
274
274
var testSettings = new VSTestSettings
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 5.0.402 "
3
+ "version" : " 5.0.403 "
4
4
},
5
5
"msbuild-sdks" : {
6
- "MSBuild.Sdk.Extras" : " 3.0.23 "
6
+ "MSBuild.Sdk.Extras" : " 3.0.38 "
7
7
}
8
8
}
You can’t perform that action at this time.
0 commit comments