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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .build/Build.CI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static RocketSurgeonGitHubActionsConfiguration LintStagedMiddleware(Rocke
configuration
.Jobs.OfType<RocketSurgeonsGithubActionsJob>()
.First(z => z.Name.Equals("Build", StringComparison.OrdinalIgnoreCase))
.UseDotNetSdks("8.0", "9.0", "10.0");
.UseDotNetSdks("8.0", "10.0");

return configuration;
}
Expand Down
2 changes: 1 addition & 1 deletion .build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ internal partial class Pipeline : NukeBuild,
/// </summary>
public Target JetBrainsCleanupCode => _ => _
.Inherit<ICanDotNetFormat>(x => x.JetBrainsCleanupCode)
.OnlyWhenStatic(() => IsServerBuild);
.OnlyWhenStatic(() => false);

[OptionalGitRepository]
public GitRepository? GitRepository { get; }
Expand Down
8 changes: 6 additions & 2 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ coverage:
precision: 2

status:
project: yes
patch: yes
project:
default:
threshold: 1%
patch:
default:
threshold: 1%
changes: no

comment:
Expand Down
20 changes: 10 additions & 10 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"isRoot": true,
"tools": {
"gitversion.tool": {
"version": "6.6.0",
"version": "6.5.1",
"commands": ["dotnet-gitversion"],
"rollForward": false
},
"dotnet-reportgenerator-globaltool": {
"version": "5.5.2",
"version": "5.5.1",
"commands": ["reportgenerator"],
"rollForward": false
},
"nuke.globaltool": {
"version": "9.0.4",
"version": "10.1.0",
"commands": ["nuke"],
"rollForward": false
},
Expand All @@ -23,37 +23,37 @@
"rollForward": false
},
"jetbrains.resharper.globaltools": {
"version": "2025.3.3",
"version": "2025.3.2",
"commands": ["jb"],
"rollForward": false
},
"jetbrains.dotcover.commandlinetools": {
"version": "2025.3.3",
"version": "2025.3.2",
"commands": ["dotCover"],
"rollForward": false
},
"jetbrains.dottrace.globaltools": {
"version": "2025.3.3",
"version": "2025.3.2",
"commands": ["dottrace"],
"rollForward": false
},
"dotnet-coverage": {
"version": "17.14.2",
"version": "18.4.1",
"commands": ["dotnet-coverage"],
"rollForward": false
},
"dotnet-outdated-tool": {
"version": "4.6.9",
"version": "4.7.0",
"commands": ["dotnet-outdated"],
"rollForward": false
},
"husky": {
"version": "0.7.2",
"version": "0.8.0",
"commands": ["husky"],
"rollForward": false
},
"verify.tool": {
"version": "0.6.0",
"version": "0.7.0",
"commands": ["dotnet-verify"],
"rollForward": false
},
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ jobs:
uses: actions/setup-dotnet@v5
with:
dotnet-version: '8.0.x'
- name: 🔨 Use .NET Core 9.0 SDK
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: 🔨 Use .NET Core 10.0 SDK
uses: actions/setup-dotnet@v5
with:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
*.user
*.sln.docstates

.DS_Store

# Build results
[Dd]ebug/
[Dd]ebugPublic/
Expand Down Expand Up @@ -207,5 +209,4 @@ src/Cake.Scripts/tools/tools/
codealike.json

# Rider
.idea/
*.received.*
13 changes: 13 additions & 0 deletions .idea/.idea.Extensions/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.Extensions/.idea/copilot.data.migration.agent.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.Extensions/.idea/copilot.data.migration.edit.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/.idea.Extensions/.idea/discord.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/.idea.Extensions/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.Extensions/.idea/git_toolbox_blame.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/.idea.Extensions/.idea/indexLayout.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.Extensions/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

82 changes: 42 additions & 40 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,52 +1,54 @@
<Project>
<PropertyGroup>
<Company>Rocket Surgeons Guild</Company>
<Copyright>Copyright Rocket Surgeons Guild © $([System.DateTime]::Now.ToString('yyyy'))</Copyright>
<Authors>David Driscoll,Rocket Surgeons Guild contributors</Authors>
<PackageProjectUrl>https://rocketsurgeonsguild.github.io/</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>images/packageicon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<!--
<PropertyGroup>
<Company>Rocket Surgeons Guild</Company>
<Copyright>Copyright Rocket Surgeons Guild © $([System.DateTime]::Now.ToString('yyyy'))</Copyright>
<Authors>David Driscoll,Rocket Surgeons Guild contributors</Authors>
<PackageProjectUrl>https://rocketsurgeonsguild.github.io/</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>images/packageicon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<!--
in package
Title
Description
Tags
-->
<LangVersion>preview</LangVersion>
<Features>strict</Features>
<Nullable>enable</Nullable>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisLevel>latest</AnalysisLevel>
<!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>-->
<!-- <WarningsNotAsErrors></WarningsNotAsErrors>-->
<WarningsAsErrors>RS0017</WarningsAsErrors>
<LangVersion>preview</LangVersion>
<Features>strict</Features>
<Nullable>enable</Nullable>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisLevel>latest</AnalysisLevel>
<!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>-->
<!-- <WarningsNotAsErrors></WarningsNotAsErrors>-->
<WarningsAsErrors>RS0017</WarningsAsErrors>

<NuGetAudit>true</NuGetAudit>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>moderate</NuGetAuditLevel>
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
</PropertyGroup>
<ItemGroup>
<None
<NuGetAudit>true</NuGetAudit>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>moderate</NuGetAuditLevel>
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<None
Include="$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png"
Condition="Exists('$(MSBuildThisFileDirectory)/.nuke/temp/packageicon.png')"
Pack="true"
PackagePath="/images/"
Visible="false" />
<None Include="$(MSBuildThisFileDirectory)/LICENSE" Pack="true" PackagePath="/" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectCapability Include="DynamicDependentFile" />
<ProjectCapability Include="DynamicFileNesting" />
</ItemGroup>
<ItemGroup>
<Using Include="JetBrains.Annotations" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.Diagnostics.CodeAnalysis.NotNullAttribute" Alias="NotNullAttribute" />
</ItemGroup>
Visible="false"
/>
<None Include="$(MSBuildThisFileDirectory)/LICENSE" Pack="true" PackagePath="/" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectCapability Include="DynamicDependentFile" />
<ProjectCapability Include="DynamicFileNesting" />
</ItemGroup>
<ItemGroup>
<Using Include="JetBrains.Annotations" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.Diagnostics.CodeAnalysis.NotNullAttribute" Alias="NotNullAttribute" />
</ItemGroup>
</Project>
5 changes: 2 additions & 3 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>

<?xml version="1.0" encoding="utf-8" ?>
<Project>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" PrivateAssets="all" />
<PackageReference Include="JetBrains.Annotations.Sources" PrivateAssets="all" Condition="'$(MSBuildProjectName)'!='.build'" />
</ItemGroup>
</Project>
Loading
Loading