Skip to content

Commit 848d94d

Browse files
committed
Update dependencies
1 parent 42307e8 commit 848d94d

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-format": {
6-
"version": "5.1.225507",
6+
"version": "5.1.250801",
77
"commands": [
88
"dotnet-format"
99
]

src/Directory.Build.props

+4-8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<AssemblyOriginatorKeyFile>../signing.snk</AssemblyOriginatorKeyFile>
55
<CheckEolTargetFramework>false</CheckEolTargetFramework>
6+
<ContinuousIntegrationBuild Condition=" '$(GITHUB_ACTIONS)' == 'true' ">true</ContinuousIntegrationBuild>
67
<DebugType>embedded</DebugType>
78
<EmbedUntrackedSources>true</EmbedUntrackedSources>
89
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
@@ -13,7 +14,7 @@
1314
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1415
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
1516
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
16-
<LangVersion>latest</LangVersion>
17+
<LangVersion>10.0</LangVersion>
1718
<NoWarn>$(NoWarn);NU1603;NU5128;NU5131;CS1701</NoWarn>
1819
<PackageId>$(MSBuildProjectName)</PackageId>
1920
<RootNamespace>Xunit</RootNamespace>
@@ -28,16 +29,11 @@
2829
</ItemGroup>
2930

3031
<ItemGroup>
31-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="all" />
32-
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.240">
32+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
33+
<PackageReference Include="Nerdbank.GitVersioning" Version="3.5.108">
3334
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3435
<PrivateAssets>all</PrivateAssets>
3536
</PackageReference>
3637
</ItemGroup>
3738

38-
<!-- GitHub Actions -->
39-
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
40-
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
41-
</PropertyGroup>
42-
4339
</Project>

src/Directory.Build.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<!-- Supplement Nerdbank.GitVersioning version calculations -->
12-
<Target Name="UpdateAssemblyVersionInfo" BeforeTargets="GenerateAssemblyVersionInfo" DependsOnTargets="GetBuildVersion">
12+
<Target Name="UpdateAssemblyVersionInfo" BeforeTargets="GenerateAssemblyNBGVVersionInfo" DependsOnTargets="GetBuildVersion">
1313
<PropertyGroup>
1414
<!-- AssemblyVersion and AssemblyFileVersion should be x.y.z.0 -->
1515
<AssemblyVersion>$(BuildVersionSimple)</AssemblyVersion>

src/xunit.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Installing this package installs xunit.core, xunit.assert, and xunit.analyzers.<
1616
<repository type="git" url="https://github.com/xunit/xunit" commit="$GitCommitId$" />
1717
<dependencies>
1818
<dependency id="xunit.core" version="[$PackageVersion$]" />
19-
<dependency id="xunit.assert" version="[$PackageVersion$]" />
20-
<dependency id="xunit.analyzers" version="0.10.0" />
19+
<dependency id="xunit.assert" version="$PackageVersion$" />
20+
<dependency id="xunit.analyzers" version="1.0.0" />
2121
</dependencies>
2222
</metadata>
2323
<files>

0 commit comments

Comments
 (0)