File tree 3 files changed +11
-7
lines changed
src/xunit.runner.visualstudio
3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<MicrosoftNetCoreAppRefVersion >6.0.11</MicrosoftNetCoreAppRefVersion >
5
- <MicrosoftNetTestSdkVersion >17.8 .0</MicrosoftNetTestSdkVersion >
5
+ <MicrosoftNetTestSdkVersion >17.9 .0</MicrosoftNetTestSdkVersion >
6
6
<MicrosoftSourceLinkGitHubVersion >8.0.0</MicrosoftSourceLinkGitHubVersion >
7
7
<MicrosoftTestPlatformObjectModelVersion >$(MicrosoftNetTestSdkVersion)</MicrosoftTestPlatformObjectModelVersion >
8
8
<NerdbankGitVersioningVersion >3.6.133</NerdbankGitVersioningVersion >
9
9
<NSubstituteVersion >5.1.0</NSubstituteVersion >
10
10
<TunnelVisionLabsReferenceAssemblyAnnotatorVersion >1.0.0-alpha.160</TunnelVisionLabsReferenceAssemblyAnnotatorVersion >
11
- <XunitAnalyzersVersion >1.11 .0</XunitAnalyzersVersion >
12
- <XunitVersion >2.7.0 </XunitVersion >
11
+ <XunitAnalyzersVersion >1.12 .0</XunitAnalyzersVersion >
12
+ <XunitVersion >2.7.1 </XunitVersion >
13
13
</PropertyGroup >
14
14
15
15
</Project >
Original file line number Diff line number Diff line change 36
36
<!-- Supplement Nerdbank.GitVersioning version calculations -->
37
37
<Target Name =" UpdateAssemblyVersionInfo" BeforeTargets =" GenerateAssemblyNBGVVersionInfo" DependsOnTargets =" GetBuildVersion" >
38
38
<PropertyGroup >
39
+ <!-- Local builds should have a '-dev' suffix on the build number -->
40
+ <PrereleaseSuffix Condition =" '$(GITHUB_ACTIONS)' != 'true' " >-dev</PrereleaseSuffix >
39
41
<!-- AssemblyVersion and AssemblyFileVersion should be x.y.z.0 -->
40
42
<AssemblyVersion >$(BuildVersionSimple)</AssemblyVersion >
41
43
<AssemblyFileVersion >$(BuildVersionSimple)</AssemblyFileVersion >
42
44
<!-- Always put the Git hash in the informational version, even for non-pre-release versions -->
43
- <AssemblyInformationalVersion >$(BuildVersionSimple)$(PrereleaseVersion)+$(GitCommitIdShort)</AssemblyInformationalVersion >
45
+ <AssemblyInformationalVersion >$(BuildVersionSimple)$(PrereleaseVersion)$(PrereleaseSuffix) +$(GitCommitIdShort)</AssemblyInformationalVersion >
44
46
</PropertyGroup >
45
47
</Target >
46
48
47
49
<Target Name =" UpdateNuSpecProperties" BeforeTargets =" GenerateNuspec" DependsOnTargets =" GetBuildVersion" >
48
50
<PropertyGroup >
49
51
<SignedPath />
50
52
<SignedPath Condition =" '$(SIGN_APP_SECRET)' != '' " >signed\</SignedPath >
53
+ <!-- Local builds should have a '-dev' suffix on the build number -->
54
+ <PrereleaseSuffix Condition =" '$(GITHUB_ACTIONS)' != 'true' " >-dev</PrereleaseSuffix >
51
55
<!-- Never put the Git hash in the package version -->
52
- <PackageVersion >$(BuildVersionSimple)$(PrereleaseVersion)</PackageVersion >
56
+ <PackageVersion >$(BuildVersionSimple)$(PrereleaseVersion)$(PrereleaseSuffix) </PackageVersion >
53
57
<!-- Pass through values we don't know ahead of time for any hand-crafted .nuspec files -->
54
58
<NuspecProperties >
55
59
Configuration=$(Configuration);
60
64
</NuspecProperties >
61
65
</PropertyGroup >
62
66
</Target >
63
-
67
+
64
68
</Project >
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json" ,
3
- "version" : " 2.5.8-pre.{height} " ,
3
+ "version" : " 2.5.8" ,
4
4
"nuGetPackageVersion" : {
5
5
"semVer" : 2.0
6
6
},
You can’t perform that action at this time.
0 commit comments