Skip to content

Commit c159bac

Browse files
authored
Merge pull request #164 from AArnott/libtemplate
Merge Library.Template
2 parents 113e057 + e8b7077 commit c159bac

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,6 @@ MigrationBackup/
349349

350350
# dotnet tool local install directory
351351
.store/
352+
353+
# mac-created file to track user view preferences for a directory
354+
.DS_Store

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<MicroBuildVersion>2.0.93</MicroBuildVersion>
88
</PropertyGroup>
99
<ItemGroup>
10-
<PackageVersion Include="Microsoft.CodeCoverage" Version="17.5.0-release-20221220-01" />
10+
<PackageVersion Include="Microsoft.CodeCoverage" Version="17.5.0-release-20230105-01" />
1111
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
1212
<PackageVersion Include="Microsoft.VisualStudio.Internal.MicroBuild.NonShipping" Version="$(MicroBuildVersion)" />
1313
<PackageVersion Include="Moq" Version="4.18.4" />

azure-pipelines/Archive-SourceCode.ps1

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,10 @@ if (!$OwnerAlias) {
116116
if ($env:BUILD_REQUESTEDFOREMAIL) {
117117
Write-Verbose 'Using $env:BUILD_REQUESTEDFOREMAIL and slicing to just the alias for OwnerAlias.'
118118
$OwnerAlias = ($env:BUILD_REQUESTEDFOREMAIL -split '@')[0]
119+
} else {
120+
$OwnerAlias = $TeamAlias
119121
}
120-
else {
121-
Write-Verbose 'Using $env:USERNAME for OwnerAlias.'
122-
$OwnerAlias = $env:USERNAME
123-
}
122+
124123
if (!$OwnerAlias) {
125124
Write-Error "Unable to determine default value for -OwnerAlias."
126125
}

azure-pipelines/Merge-CodeCoverage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if ($reports) {
4141

4242
$Inputs = $reports |% { Resolve-Path -relative $_.FullName }
4343

44-
if (Split-Path $OutputFile) {
44+
if ((Split-Path $OutputFile) -and -not (Test-Path (Split-Path $OutputFile))) {
4545
New-Item -Type Directory -Path (Split-Path $OutputFile) | Out-Null
4646
}
4747

azure-pipelines/official.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ stages:
5050

5151
- stage: Build
5252
variables:
53-
TreatWarningsAsErrors: true
53+
MSBuildTreatWarningsAsErrors: true
5454
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
5555
BuildConfiguration: Release
5656
NUGET_PACKAGES: $(Agent.TempDirectory)/.nuget/packages

test/Microsoft.VisualStudio.Validation.Tests/Microsoft.VisualStudio.Validation.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net472;netcoreapp3.1;net6.0</TargetFrameworks>
3+
<TargetFrameworks>net472;net6.0</TargetFrameworks>
44
</PropertyGroup>
55
<ItemGroup>
66
<PackageReference Include="Microsoft.CodeCoverage" />

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "17.0",
3+
"version": "17.6-alpha",
44
"publicReleaseRefSpec": [
55
"^refs/heads/main$",
66
"^refs/heads/v\\d+(?:\\.\\d+)?$"

0 commit comments

Comments
 (0)