ProgrammerAL.Tools.CodeUpdater
0.1.0-preview.42
See the version list below for details.
dotnet tool install --global ProgrammerAL.Tools.CodeUpdater --version 0.1.0-preview.42
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local ProgrammerAL.Tools.CodeUpdater --version 0.1.0-preview.42
#tool dotnet:?package=ProgrammerAL.Tools.CodeUpdater&version=0.1.0-preview.42&prerelease
nuke :add-package ProgrammerAL.Tools.CodeUpdater --version 0.1.0-preview.42
Code Updater
The purpose of this project is to update specific aspects of code below a directory. This is useful when you have a large number of projects that you want to update all at once. This application is assumed to run on a local machine, and then the changes are manually committed to source control. This allows for a more controlled update process, because a developer is meant to manually check the changes before committing them.
It would be great to get this to work for all kinds of languages/frameworks someday, but for now it's just .NET and a little bit for NPM.
What Updates Can Be Done
- Update .NET
*.csproj
files to use a specified C# Language Version - Update .NET
*.csproj
files to use a specified .NET SDK Version (AKA TargetFramework element) - Enable/Disable .NET Analyzers in all
*.csproj
files - Run
dotnet format
command on all*.csproj
files - Update all NuGet packages in all *
.csproj
files to the latest version - Add Nuget auditing properties to all
*.csproj
files - Update all NPM packages in all package.json files to the latest version
How to Use It
Remember, the purpose of this is to update code and dependencies. It is assumed, and recommended, a developer runs this locally and verifies the changes before comitting the changes to source control. Below are the assumed steps a user would follow.
- Install the Tool
- Install the tool globally by running
dotnet tool install --global ProgrammerAL.Tools.CodeUpdater --version <<version number>>
- Create an Options File
- The options file specifys what updates to run on the code
- Instructions on how to create the file are below. See the
Options File
andExample Options File
sections
- Run the Tool
- Run it with the command:
code-updater --options "C:/my-repos/my-app-1/my-options-file.json"
- Wait for the application to finish. It will output the number of projects updated, and the number of projects that failed to update.
- Manually check a diff of all the file changes to ensure everything is as you expect
- Make any manual changes you feel you need to
- If there were any build failures that were caused by the updates, fix those
- Commit the code changes to source control. Wait for a CI/CD pipeline to run and ensure everything is still working as expected. You do have a CI/CD pipeline, right?
CLI Options
-o|--options
- Path to the options file to use for updating code
-h|--help
- Outputs CLI help
Options File
This is a config file used by the app to determine what updates to run. It is composed of different objects which enable certain update features. Setting an object means that feature will run. Omitting it from the file will disable that update feature.
- UpdatePathOptions
- Required
- This object determines what will be updated based on file paths
- Properties:
- RootDirectory
- Root directory to run from. Code Updater will search all child directories within this for projects to update.
- IgnorePatterns
- Strings to ignore within file paths when looking for projects to update. This is OS sensitive, so use \ as the path separator for Windows, and / as the path separator everywhere else. Ex:
\my-skip-path\
will ignore all projects that have the text\my-skip-path\
within the full path. Note this example will only work on Windows because that uses backslashes for path separators.
- Strings to ignore within file paths when looking for projects to update. This is OS sensitive, so use \ as the path separator for Windows, and / as the path separator everywhere else. Ex:
- RootDirectory
- LoggingOptions
- Optional
- Options for output logging of the tool
- Properties:
- OutputFile
- Optional
- Path to a file to write logs to. Note that logs are always written to the console, even if you choose to output to a file.
- LogLevel
- Optional
- Default Value: verbose
- Verbosity level to log. Valid values are: Verbose, Info, Warn, Error
- OutputFile
- CSharpOptions
- Optional
- This stores different objects, each are a set of options for what updates to perform on C# code and csproj files
- Child Objects:
- CsProjVersioningOptions
- Optional
- Versioning options for
*.csproj
files - Required Properties:
- TargetFramework
- String. Target Framework to set in all
*.csproj
files
- String. Target Framework to set in all
- LangVersion
- String. C# language version to set in all
*.csproj
files
- String. C# language version to set in all
- TreatWarningsAsErrors
- Boolean. The value to set for the TreatWarningsAsErrors flag in all
*.csproj
files
- Boolean. The value to set for the TreatWarningsAsErrors flag in all
- TargetFramework
- CsProjDotNetAnalyzerOptions
- Optional
- .NET First Party Analyzer settings to set in all
*.csproj
files. You can read more at https://learn.microsoft.com/en-us/visualstudio/code-quality/install-net-analyzers?view=vs-2022 - Required Properties:
- EnableNetAnalyzers
- Boolean. Value to set the
EnableNetAnalyzers
csproj value to
- Boolean. Value to set the
- EnforceCodeStyleInBuild
- Boolean. Value to set the
EnforceCodeStyleInBuild
csproj value to
- Boolean. Value to set the
- EnableNetAnalyzers
- CSharpStyleOptions
- Optional
- Options for any code styling updates that will be performed over C# code
- Required Properties:
- RunDotnetFormat
- Boolean. True to run the
dotnet format
command
- Boolean. True to run the
- RunDotnetFormat
- NugetAuditOptions
- Optional
- Settings to use for configuring Nuget Audit settings in csproj files. You can read more at https://learn.microsoft.com/en-us/nuget/concepts/auditing-packages#configuring-nuget-audit
- Required Properties:
- NuGetAudit
- Boolean. What value to set for the
NuGetAudit
property in the csproj file.
- Boolean. What value to set for the
- AuditMode
- String. What value to set for the
NuGetAuditMode
property in the csproj file. Valid values aredirect
andall
.
- String. What value to set for the
- AuditLevel
- String. What value to set for the
NuGetAuditLevel
property in the csproj file. Valid values are:low
,moderate
,high
, andcritical
- String. What value to set for the
- NuGetAudit
- NuGetUpdateOptions
- Optional
- Settings to use for updating NuGet packages in csproj files
- Required Properties:
- UpdateTopLevelNugetsInCsProj
- Boolean. True to updates all referenced nugets to the latest version. These are the references in the csproj files.
- UpdateTopLevelNugetsNotInCsProj
- Boolean. True to updates all indirect nugets to the latest version. These are the nugets that are referenced automatically based on SDK chosen or something like that.
- UpdateTopLevelNugetsInCsProj
- CsProjVersioningOptions
- NpmOptions
- Optional
- Options for updating Npm packages. If this is not set, NPM packages will not be updated
- Properties:
- NpmCompileOptions
- Optional
- Options for compiling Npm packages after updates. Note if this is not set, but the parent NpmOptions is set, NPM Packages will be updated but not tested with a compile.
- Required Properties:
- NpmBuildCommand
- NpmBuildCommand
- String. Npm command to "compile" the npm directory. The CLI command that will be run is:
npm run {{NpmBuildCommand}}
- String. Npm command to "compile" the npm directory. The CLI command that will be run is:
- NpmBuildCommand
- NpmBuildCommand
- NpmCompileOptions
Example Options File
{
"UpdatePathOptions": {
"RootDirectory": "C:/my-repos/my-app-1",
"IgnorePatterns": [
"/samples/",
"\\samples\\"
]
},
"LoggingOptions": {
"LogLevel": "Verbose",
"OutputFile": "./code-updater-output.txt"
},
"CSharpOptions": {
"CsProjVersioningOptions": {
"TreatWarningsAsErrors": true,
"TargetFramework": "net8.0",
"LangVersion": "latest"
},
"CsProjDotNetAnalyzerOptions": {
"EnableNetAnalyzers": true,
"EnforceCodeStyleInBuild": true
},
"CSharpStyleOptions": {
"RunDotnetFormat": true
},
"NugetAuditOptions": {
"NuGetAudit": true,
"AuditMode": "all",
"AuditLevel": "low"
},
"NuGetUpdateOptions": {
"UpdateTopLevelNugetsInCsProj": true,
"UpdateTopLevelNugetsNotInCsProj": true
}
},
"NpmOptions": {
"NpmCompileOptions":{
"BuildCommand": "publish"
}
}
}
Ignore Patterns
The Code Updater application has a default set of paths to ignore. The list is below. Note that all paths are in the list using both forwardslashes and backslashes. These are in addition to any skip paths passed in with the IgnorePatterns
config file property. There is no way to remove these. Think of these like an ignore file, but no wildcard syntax. it's just basic string matching.
Ignore all C# obj
and bin
folders:
- /obj/Debug/
- /obj/Release/
- /bin/Debug/
- /bin/Release/
- \obj\Debug\
- \obj\Release\
- \bin\Debug\
- \bin\Release\
Ignore packages inside node_modules folder:
- /node_modules/
- \node_modules\
Installing Locally vs Downloading the Code
The tool can be very opinionated. For example, when updating packages it will only update to the latest version. If the tool does some things you can't use for your projects, you can download the code, make changes, and keep that for yourself (OSS FTW). If this is something you have to do, feel free to file an issue in the repo and and we can discuss it. Maybe a change you need can be incorporated into the project.
Required 3rd Party Software
In order to run the tool you need the following software installed on your local machine.
- .NET CLI
- So you can install .NET Tool from nuget.org
- PowerShell
- Quick Reminder: PowerShell is cross platform, you can run it on Linux and MacOS, not just Windows
PowerShell is required as a workaround. The NPM executable on Windows doesn't run like other applications, and as a result, on Windows, it doesn't exit like a normal process. I don't know why, I never spent the time figuring it out. The workaround makes PowerShell the host application so it exits like you would expect, when the process is done. For this reason, whenever an external process must be run, it's run through PowerShell. It's a hack, but it works well enough.
.NET Standard Projects
When updating csproj files to a specific TargetFramework
version, the project is skipped if using .NET Standard. Those are usually set for a specific level of API compatibility so we don't want to mess with those.
Update Script Sample
You can create a script to make it easy to run Code Updater on a regular basis. A sample PowerShell script to do that is in the /code-update-runner-sample
directory of this repo. It has the below files:
code-updater-config.json
- Example config file to use when running Code Updater
run-code-updater.ps1
- PowerShell script that runs Code Updater one directory up in the tree, using the given
code-updater-config.json
file as config
- PowerShell script that runs Code Updater one directory up in the tree, using the given
Feel free to use those files as a base, and modify them for your repositories as needed. For extra points, commit them to your repository to make it easy to use in the future.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
1.0.1.61 | 35 | 11/22/2024 |
1.0.1-preview.60 | 41 | 11/20/2024 |
1.0.1-preview.58 | 31 | 11/20/2024 |
1.0.1-preview.55 | 32 | 11/20/2024 |
1.0.0.47 | 84 | 11/3/2024 |
1.0.0-preview.53 | 42 | 11/20/2024 |
0.1.0-preview.42 | 41 | 11/2/2024 |
0.1.0-preview.37 | 37 | 11/2/2024 |
0.1.0-preview.28 | 52 | 10/11/2024 |
0.1.0-preview.26 | 48 | 10/11/2024 |
0.1.0-preview.23 | 66 | 10/9/2024 |
0.1.0-preview.21 | 57 | 10/7/2024 |
0.1.0-preview.18 | 52 | 10/6/2024 |
0.1.0-preview.16 | 49 | 10/6/2024 |
0.1.0-preview.10 | 49 | 10/4/2024 |
0.1.0-preview.8 | 67 | 10/4/2024 |
0.1.0-preview.5 | 51 | 10/1/2024 |