forked from rix0rrr/WindowsPathEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRELEASING
More file actions
27 lines (20 loc) · 1.02 KB
/
Copy pathRELEASING
File metadata and controls
27 lines (20 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Release checklist
=================
1. Bump version in `WindowsPathEditor/Properties/AssemblyInfo.cs`
- AssemblyVersion, AssemblyFileVersion (e.g. "1.10.0.0")
2. Build Release
MSBuild WindowsPathEditor.sln /restore /p:Configuration=Release /p:Platform=x86
3. Run the test suite — must be 100% green before tagging
vstest.console.exe WindowsPathEditor.Tests\bin\x86\Release\net48\WindowsPathEditor.Tests.dll
4. Create the zip (exe + Rx DLLs, no vshost / pdb)
cd WindowsPathEditor\bin\Release
Compress-Archive -Path WindowsPathEditor.exe,System.Reactive.dll,System.Reactive.Windows.Threading.dll `
-DestinationPath ..\..\..\windowspatheditor-<version>.zip
5. Tag and push
git tag <version>
git push origin master --tags
6. Create the GitHub release with the zip attached
gh release create <version> windowspatheditor-<version>.zip `
--title "v<version>" `
--notes "See commit history for details."
7. Update README.md — change the download badge URL to the new version, commit, push