Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"gitversion.tool": {
"version": "6.4.0",
"version": "6.5.0",
"commands": [
"dotnet-gitversion"
],
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
dotnet run --configuration Release --no-build --project Example
dotnet test --configuration Release --no-build \
-p:TestingPlatformCommandLineArguments="--report-trx --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml"
--report-trx --coverage --coverage-output-format cobertura --coverage-output coverage.cobertura.xml

- name: Package
run: dotnet pack --configuration Release --no-build
Expand Down
5 changes: 2 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ SPDX-License-Identifier: MIT
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' != 'true'">false</ContinuousIntegrationBuild>

<!-- Use the latest .NET SDK -->
<MainTargetFramework>net9.0</MainTargetFramework>
<MainTargetFramework>net10.0</MainTargetFramework>

<!-- Use the latest C# Language standard -->
<LangVersion>13.0</LangVersion>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>

Expand All @@ -35,7 +35,6 @@ SPDX-License-Identifier: MIT
<IsPublishable>false</IsPublishable>
<IsTrimmable>true</IsTrimmable>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\strongname.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<!-- Assembly metadata -->
<Product>gitversion-msbuild</Product>
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SPDX-License-Identifier: MIT
<Project>
<ItemGroup>
<!-- GitVersion.MsBuild -->
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.14.28" />
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="18.0.2" />
<!-- UnitTests -->
<PackageVersion Include="Moq" Version="4.20.72" />
</ItemGroup>
Expand Down
7 changes: 5 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"sdk": {
"version": "9.0.306",
"version": "10.0.100",
"allowPrerelease": false,
"rollForward": "latestFeature"
},
"msbuild-sdks": {
"MSTest.Sdk": "4.0.1"
"MSTest.Sdk": "4.0.2"
},
"test": {
"runner": "Microsoft.Testing.Platform"
}
}
Loading