Skip to content

Commit

Permalink
fix more warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlacey committed May 22, 2024
1 parent faf5d82 commit 7047f81
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## Release 0.0

### New Rules

Rule ID | Category | Severity | Notes
--------|----------|----------|--------------------
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### New Rules

Rule ID | Category | Severity | Notes
--------|----------|----------|--------------------
RXILOC | Naming | Warning | Only for debugging purposes. Ensure not using hardcoded text where shouldnt.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
</PropertyGroup>

<ItemGroup>
<None Remove="AnalyzerReleases.Shipped.md" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.9.2" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all" />
Expand Down
21 changes: 21 additions & 0 deletions VSIX/RapidXamlToolkit.Tests.AutoFix/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0"
newVersion="6.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis.Csharp"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
21 changes: 21 additions & 0 deletions VSIX/RapidXamlToolkit.Tests/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0"
newVersion="6.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis.Csharp"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static CustomAnalysisAction[] Create(CustomAnalysisTag tag, string file)
{
var result = new List<CustomAnalysisAction>
{
new CustomAnalysisAction(file, tag),
new(file, tag),
};

foreach (var altAction in tag.AlternativeActions)
Expand Down
28 changes: 21 additions & 7 deletions VSIX/RapidXamlToolkit/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,27 @@
<bindingRedirect oldVersion="0.0.0.0-6.0.0"
newVersion="6.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis.Csharp"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.CodeAnalysis.VisualBasic"
publicKeyToken="31bf3856ad364e35"
culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.10.0.0"
newVersion="4.9.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
<applicationSettings>
Expand Down

0 comments on commit 7047f81

Please sign in to comment.