Skip to content

Commit adcadb7

Browse files
Bump the csharpier group across 1 directory with 2 updates (#28)
Bumps the csharpier group with 2 updates in the / directory: [CSharpier.MsBuild](https://github.com/belav/csharpier) and [csharpier](https://github.com/belav/csharpier). Updates `CSharpier.MsBuild` from 0.30.1 to 0.30.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/belav/csharpier/releases">CSharpier.MsBuild's releases</a>.</em></p> <blockquote> <h1>0.30.4</h1> <h2>What's Changed</h2> <h3>Formatting deletes <code>unsafe</code> modifier <a href="https://redirect.github.com/belav/csharpier/issues/1416">#1416</a></h3> <p>Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword</p> <pre lang="c#"><code>// input &amp; expected output using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; <p>// 0.30.3 using NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; </code></pre></p> <h3>CSharpier keeps adding a newline every time a file is formatted <a href="https://redirect.github.com/belav/csharpier/issues/1408">#1408</a></h3> <p>In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file</p> <pre lang="c#"><code>// input &amp; expected outpet using System; <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block</p> <p>// 0.30.3 using System;</p> <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block </code></pre></p> <p><strong>Full Changelog</strong>: <a href="https://github.com/belav/csharpier/compare/0.30.3...0.30.4">https://github.com/belav/csharpier/compare/0.30.3...0.30.4</a></p> <h2>0.30.3</h2> <h2>What's Changed</h2> <h3>CSharpier.MsBuild doesn't fail the github action anymore <a href="https://redirect.github.com/belav/csharpier/issues/1357">#1357</a></h3> <p>The changes for <a href="https://redirect.github.com/belav/csharpier/pull/1311">1311</a> caused CSharpier.MsBuild to not report unformatted files as errors on linux.</p> <p>Thanks go to <a href="https://github.com/PetSerAl"><code>@​PetSerAl</code></a> for the fix</p> <h2>0.30.2</h2> <h2>What's Changed</h2> <h3>CSharpier.MsBuild now uses DOTNET_HOST_PATH instead of just dotnet <a href="https://redirect.github.com/belav/csharpier/pull/1387">#1387</a></h3> <p>Use current dotnet binary from DOTNET_HOST_PATH instead of just dotnet.</p> <ul> <li>Global (in PATH) may not exist (when used Binaries, but not Installers).</li> <li>Global can have different runtime version.</li> <li>Consistent with outer tools (csc for example). <a href="https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64">https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64</a></li> <li>It is documented to be used for that purpose. <a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path">https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/belav/csharpier/blob/main/CHANGELOG.md">CSharpier.MsBuild's changelog</a>.</em></p> <blockquote> <p># 0.30.4</p> <h2>What's Changed</h2> <h3>Formatting deletes <code>unsafe</code> modifier <a href="https://redirect.github.com/belav/csharpier/issues/1416">#1416</a></h3> <p>Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword</p> <pre lang="c#"><code>// input &amp; expected output using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; <p>// 0.30.3 using NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; </code></pre></p> <h3>CSharpier keeps adding a newline every time a file is formatted <a href="https://redirect.github.com/belav/csharpier/issues/1408">#1408</a></h3> <p>In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file</p> <pre lang="c#"><code>// input &amp; expected outpet using System; <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block</p> <p>// 0.30.3 using System;</p> <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block </code></pre></p> <p><strong>Full Changelog</strong>: <a href="https://github.com/belav/csharpier/compare/0.30.3...0.30.4">https://github.com/belav/csharpier/compare/0.30.3...0.30.4</a></p> <h1>0.30.3</h1> <h2>What's Changed</h2> <h3>CSharpier.MsBuild doesn't fail the github action anymore <a href="https://redirect.github.com/belav/csharpier/issues/1357">#1357</a></h3> <p>The changes for <a href="https://redirect.github.com/belav/csharpier/pull/1311">1311</a> caused CSharpier.MsBuild to not report unformatted files as errors on linux.</p> <p>Thanks go to <a href="https://github.com/PetSerAl"><code>@​PetSerAl</code></a> for the fix</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/belav/csharpier/compare/0.30.2...0.30.3">https://github.com/belav/csharpier/compare/0.30.2...0.30.3</a></p> <h1>0.30.2</h1> <h2>What's Changed</h2> <h3>CSharpier.MsBuild now uses DOTNET_HOST_PATH instead of just dotnet <a href="https://redirect.github.com/belav/csharpier/pull/1387">#1387</a></h3> <p>Use current dotnet binary from DOTNET_HOST_PATH instead of just dotnet.</p> <ul> <li>Global (in PATH) may not exist (when used Binaries, but not Installers).</li> <li>Global can have different runtime version.</li> <li>Consistent with outer tools (csc for example). <a href="https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64">https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64</a></li> <li>It is documented to be used for that purpose. <a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path">https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/belav/csharpier/commit/064d35f47b29706064c8a0a1fc93065394abb987"><code>064d35f</code></a> Releasing 0.30.4 (<a href="https://redirect.github.com/belav/csharpier/issues/1420">#1420</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/cd618acb8c59fdc74aaded8185d6d8b55454bcb8"><code>cd618ac</code></a> Fixing a bug introduced by one of the fixes (<a href="https://redirect.github.com/belav/csharpier/issues/1421">#1421</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/3b88bee2b94c862d981a2e34155bdd042be97c74"><code>3b88bee</code></a> Fixing issue with losing unsafe keyword on using statement (<a href="https://redirect.github.com/belav/csharpier/issues/1417">#1417</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/e3b5efb6832f0d8df524c29b2414b1ad57e5a1ab"><code>e3b5efb</code></a> Figuring out a way to prevent the extra line before a file ending comment (<a href="https://redirect.github.com/belav/csharpier/issues/1">#1</a>...</li> <li><a href="https://github.com/belav/csharpier/commit/baa313878373a970e5472f53f932d5e1303bdabe"><code>baa3138</code></a> Some refactoring that was in the csproj branch but didn't really belng there ...</li> <li><a href="https://github.com/belav/csharpier/commit/bfedce474ed46f46f83cdb1b97d5a93513fd5e04"><code>bfedce4</code></a> Ignoring files in &quot;&quot; when reporting that csharpier needs to be insta… (<a href="https://redirect.github.com/belav/csharpier/issues/1412">#1412</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/6d285feee452cbe51f70b3bc20c88c17757b243a"><code>6d285fe</code></a> Avoid eagerly warming csharpier, doesn't seem to be a good way to delay that ...</li> <li><a href="https://github.com/belav/csharpier/commit/5cf6488d742214dcc4ba09789260dba71931b517"><code>5cf6488</code></a> Fixing bug for VS2022 options page not working when no solution open. (<a href="https://redirect.github.com/belav/csharpier/issues/1410">#1410</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/3c6f9ce119e602357c97bc7b0181687ccebdc033"><code>3c6f9ce</code></a> Adding an option to disable diagnostics for unformatted code. (<a href="https://redirect.github.com/belav/csharpier/issues/1404">#1404</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/0bec7d28ea22b775fb4451837432f4824e080e0c"><code>0bec7d2</code></a> Releasing 0.30.3 (<a href="https://redirect.github.com/belav/csharpier/issues/1401">#1401</a>)</li> <li>Additional commits viewable in <a href="https://github.com/belav/csharpier/compare/0.30.1...0.30.4">compare view</a></li> </ul> </details> <br /> Updates `csharpier` from 0.30.1 to 0.30.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/belav/csharpier/releases">csharpier's releases</a>.</em></p> <blockquote> <h1>0.30.4</h1> <h2>What's Changed</h2> <h3>Formatting deletes <code>unsafe</code> modifier <a href="https://redirect.github.com/belav/csharpier/issues/1416">#1416</a></h3> <p>Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword</p> <pre lang="c#"><code>// input &amp; expected output using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; <p>// 0.30.3 using NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; </code></pre></p> <h3>CSharpier keeps adding a newline every time a file is formatted <a href="https://redirect.github.com/belav/csharpier/issues/1408">#1408</a></h3> <p>In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file</p> <pre lang="c#"><code>// input &amp; expected outpet using System; <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block</p> <p>// 0.30.3 using System;</p> <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block </code></pre></p> <p><strong>Full Changelog</strong>: <a href="https://github.com/belav/csharpier/compare/0.30.3...0.30.4">https://github.com/belav/csharpier/compare/0.30.3...0.30.4</a></p> <h2>0.30.3</h2> <h2>What's Changed</h2> <h3>CSharpier.MsBuild doesn't fail the github action anymore <a href="https://redirect.github.com/belav/csharpier/issues/1357">#1357</a></h3> <p>The changes for <a href="https://redirect.github.com/belav/csharpier/pull/1311">1311</a> caused CSharpier.MsBuild to not report unformatted files as errors on linux.</p> <p>Thanks go to <a href="https://github.com/PetSerAl"><code>@​PetSerAl</code></a> for the fix</p> <h2>0.30.2</h2> <h2>What's Changed</h2> <h3>CSharpier.MsBuild now uses DOTNET_HOST_PATH instead of just dotnet <a href="https://redirect.github.com/belav/csharpier/pull/1387">#1387</a></h3> <p>Use current dotnet binary from DOTNET_HOST_PATH instead of just dotnet.</p> <ul> <li>Global (in PATH) may not exist (when used Binaries, but not Installers).</li> <li>Global can have different runtime version.</li> <li>Consistent with outer tools (csc for example). <a href="https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64">https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64</a></li> <li>It is documented to be used for that purpose. <a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path">https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/belav/csharpier/blob/main/CHANGELOG.md">csharpier's changelog</a>.</em></p> <blockquote> <p># 0.30.4</p> <h2>What's Changed</h2> <h3>Formatting deletes <code>unsafe</code> modifier <a href="https://redirect.github.com/belav/csharpier/issues/1416">#1416</a></h3> <p>Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword</p> <pre lang="c#"><code>// input &amp; expected output using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; <p>// 0.30.3 using NvapiQueryInterface = delegate* unmanaged[Cdecl]&lt;uint, nint&gt;; </code></pre></p> <h3>CSharpier keeps adding a newline every time a file is formatted <a href="https://redirect.github.com/belav/csharpier/issues/1408">#1408</a></h3> <p>In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file</p> <pre lang="c#"><code>// input &amp; expected outpet using System; <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block</p> <p>// 0.30.3 using System;</p> <p>namespace MyCompany.MyNamespace;</p> <p>// Comment block </code></pre></p> <p><strong>Full Changelog</strong>: <a href="https://github.com/belav/csharpier/compare/0.30.3...0.30.4">https://github.com/belav/csharpier/compare/0.30.3...0.30.4</a></p> <h1>0.30.3</h1> <h2>What's Changed</h2> <h3>CSharpier.MsBuild doesn't fail the github action anymore <a href="https://redirect.github.com/belav/csharpier/issues/1357">#1357</a></h3> <p>The changes for <a href="https://redirect.github.com/belav/csharpier/pull/1311">1311</a> caused CSharpier.MsBuild to not report unformatted files as errors on linux.</p> <p>Thanks go to <a href="https://github.com/PetSerAl"><code>@​PetSerAl</code></a> for the fix</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/belav/csharpier/compare/0.30.2...0.30.3">https://github.com/belav/csharpier/compare/0.30.2...0.30.3</a></p> <h1>0.30.2</h1> <h2>What's Changed</h2> <h3>CSharpier.MsBuild now uses DOTNET_HOST_PATH instead of just dotnet <a href="https://redirect.github.com/belav/csharpier/pull/1387">#1387</a></h3> <p>Use current dotnet binary from DOTNET_HOST_PATH instead of just dotnet.</p> <ul> <li>Global (in PATH) may not exist (when used Binaries, but not Installers).</li> <li>Global can have different runtime version.</li> <li>Consistent with outer tools (csc for example). <a href="https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64">https://github.com/dotnet/roslyn/blob/324fd25331c969cd742ba68eee09ffd4b6fd29e3/src/Compilers/Shared/RuntimeHostInfo.cs#L61-L64</a></li> <li>It is documented to be used for that purpose. <a href="https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path">https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables#dotnet_host_path</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/belav/csharpier/commit/064d35f47b29706064c8a0a1fc93065394abb987"><code>064d35f</code></a> Releasing 0.30.4 (<a href="https://redirect.github.com/belav/csharpier/issues/1420">#1420</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/cd618acb8c59fdc74aaded8185d6d8b55454bcb8"><code>cd618ac</code></a> Fixing a bug introduced by one of the fixes (<a href="https://redirect.github.com/belav/csharpier/issues/1421">#1421</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/3b88bee2b94c862d981a2e34155bdd042be97c74"><code>3b88bee</code></a> Fixing issue with losing unsafe keyword on using statement (<a href="https://redirect.github.com/belav/csharpier/issues/1417">#1417</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/e3b5efb6832f0d8df524c29b2414b1ad57e5a1ab"><code>e3b5efb</code></a> Figuring out a way to prevent the extra line before a file ending comment (<a href="https://redirect.github.com/belav/csharpier/issues/1">#1</a>...</li> <li><a href="https://github.com/belav/csharpier/commit/baa313878373a970e5472f53f932d5e1303bdabe"><code>baa3138</code></a> Some refactoring that was in the csproj branch but didn't really belng there ...</li> <li><a href="https://github.com/belav/csharpier/commit/bfedce474ed46f46f83cdb1b97d5a93513fd5e04"><code>bfedce4</code></a> Ignoring files in &quot;&quot; when reporting that csharpier needs to be insta… (<a href="https://redirect.github.com/belav/csharpier/issues/1412">#1412</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/6d285feee452cbe51f70b3bc20c88c17757b243a"><code>6d285fe</code></a> Avoid eagerly warming csharpier, doesn't seem to be a good way to delay that ...</li> <li><a href="https://github.com/belav/csharpier/commit/5cf6488d742214dcc4ba09789260dba71931b517"><code>5cf6488</code></a> Fixing bug for VS2022 options page not working when no solution open. (<a href="https://redirect.github.com/belav/csharpier/issues/1410">#1410</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/3c6f9ce119e602357c97bc7b0181687ccebdc033"><code>3c6f9ce</code></a> Adding an option to disable diagnostics for unformatted code. (<a href="https://redirect.github.com/belav/csharpier/issues/1404">#1404</a>)</li> <li><a href="https://github.com/belav/csharpier/commit/0bec7d28ea22b775fb4451837432f4824e080e0c"><code>0bec7d2</code></a> Releasing 0.30.3 (<a href="https://redirect.github.com/belav/csharpier/issues/1401">#1401</a>)</li> <li>Additional commits viewable in <a href="https://github.com/belav/csharpier/compare/0.30.1...0.30.4">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b7ed3e6 commit adcadb7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"isRoot": true,
44
"tools": {
55
"csharpier": {
6-
"version": "0.30.1",
6+
"version": "0.30.4",
77
"commands": [
88
"dotnet-csharpier"
99
],
1010
"rollForward": false
1111
}
1212
}
13-
}
13+
}

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
8-
<PackageVersion Include="CSharpier.MsBuild" Version="0.30.1" />
8+
<PackageVersion Include="CSharpier.MsBuild" Version="0.30.4" />
99
<PackageVersion Include="DevToys.Api" Version="2.0.8-preview" />
1010
<PackageVersion Include="DotNet.ReproducibleBuilds" Version="1.2.25" />
1111
<PackageVersion Include="GitHubActionsTestLogger" Version="2.4.1" />

0 commit comments

Comments
 (0)