-
Notifications
You must be signed in to change notification settings - Fork 0
chore: bump version to 3.2.0 and refresh .NET 10 docs #503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ | |
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <UseWPF>true</UseWPF> | ||
| <UseWindowsForms>true</UseWindowsForms> | ||
| <Version>3.1.0</Version> | ||
| <Version>3.2.0</Version> | ||
| <PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
| <InternalsVisibleTo>Daqifi.Desktop.Test</InternalsVisibleTo> | ||
| <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
|
|
@@ -20,8 +20,8 @@ | |
| <EnableWindowsTargeting>true</EnableWindowsTargeting> | ||
| </PropertyGroup> | ||
| <PropertyGroup> | ||
| <AssemblyVersion>3.1.0.0</AssemblyVersion> | ||
| <FileVersion>3.1.0.0</FileVersion> | ||
| <AssemblyVersion>3.2.0.0</AssemblyVersion> | ||
| <FileVersion>3.2.0.0</FileVersion> | ||
|
Comment on lines
+23
to
+24
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2. Manifest version mismatch The app’s embedded manifest still declares assemblyIdentity version 3.1.0.0 even though the PR bumps the app’s AssemblyVersion/FileVersion to 3.2.0.0, producing inconsistent shipped identity/metadata. This mismatch is introduced by the version bump without updating the referenced ApplicationManifest file. Agent Prompt
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in 5e395df. Bumped |
||
| </PropertyGroup> | ||
| <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
| <PlatformTarget>x64</PlatformTarget> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1. Tabs in version metadata
📘 Rule violation✧ QualityAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation toolsThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Disagreed — leaving as-is.
This .csproj uses tab indentation throughout (lines 3–32), and the version-bump diff preserved the surrounding convention. Converting only the two changed lines to 4 spaces would produce mixed indentation in a single
<PropertyGroup>block, which is worse than the current consistent style.The CLAUDE.md "4 spaces" rule lives under the Code Style section alongside C#-specific guidance (Allman braces, regions, etc.) and applies to source code; project XML files in this repo follow their own tab convention. Reformatting the whole file to spaces is out of scope for a release-prep PR. Happy to do a separate
chore: normalize project-file indentationPR if the team wants that across all .csproj files.