Skip to content

Commit 6cd12af

Browse files
committed
refs
1 parent fe91829 commit 6cd12af

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

src/ConfigReader.Tests/ConfigReader.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5" PrivateAssets="All" />
1212
<PackageReference Include="Xunit" Version="2.6.3" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
14-
<PackageReference Include="ProjectDefaults" Version="1.0.106" PrivateAssets="all" />
14+
<PackageReference Include="ProjectDefaults" Version="1.0.107" PrivateAssets="all" />
1515
<None Update="allConfig.json">
1616
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1717
</None>

src/ConfigReader/ConfigReader.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<ProjectReference Include="..\MarkdownSnippets\MarkdownSnippets.csproj" />
11-
<PackageReference Include="ProjectDefaults" Version="1.0.106" PrivateAssets="all" />
11+
<PackageReference Include="ProjectDefaults" Version="1.0.107" PrivateAssets="all" />
1212
</ItemGroup>
1313

1414
</Project>

src/MarkdownSnippets.MsBuild/MarkdownSnippets.MsBuild.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="17.8.3" PrivateAssets="All" />
2626
<ProjectReference Include="..\MarkdownSnippets\MarkdownSnippets.csproj" PrivateAssets="All" />
27-
<PackageReference Include="ProjectDefaults" Version="1.0.106" PrivateAssets="all" />
27+
<PackageReference Include="ProjectDefaults" Version="1.0.107" PrivateAssets="all" />
2828
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
2929
</ItemGroup>
3030
</Project>

src/MarkdownSnippets.Tool.Tests/MarkdownSnippets.Tool.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
1313
<ProjectReference Include="..\MarkdownSnippets.Tool\MarkdownSnippets.Tool.csproj" />
1414
<ProjectReference Include="..\MarkdownSnippets\MarkdownSnippets.csproj" />
15-
<PackageReference Include="ProjectDefaults" Version="1.0.106" PrivateAssets="all" />
15+
<PackageReference Include="ProjectDefaults" Version="1.0.107" PrivateAssets="all" />
1616
</ItemGroup>
1717
</Project>

src/MarkdownSnippets.Tool/MarkdownSnippets.Tool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ProjectReference Include="..\MarkdownSnippets\MarkdownSnippets.csproj" />
1717
<PackageReference Include="CommandLineParser" Version="2.9.1" />
18-
<PackageReference Include="ProjectDefaults" Version="1.0.106" PrivateAssets="all" />
18+
<PackageReference Include="ProjectDefaults" Version="1.0.107" PrivateAssets="all" />
1919
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
2020
</ItemGroup>
2121
</Project>

src/MarkdownSnippets/MarkdownSnippets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="ProjectDefaults" Version="1.0.106" PrivateAssets="all" />
7+
<PackageReference Include="ProjectDefaults" Version="1.0.107" PrivateAssets="all" />
88
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
99
<PackageReference Include="Polyfill" Version="1.33.2" PrivateAssets="all" />
1010
<PackageReference Include="System.Memory" Version="4.5.5" Condition="'$(TargetFrameworkIdentifier)' == '.NETStandard' OR '$(TargetFrameworkIdentifier)' == '.NETFramework' OR '$(TargetFrameworkIdentifier)' == '.NETCOREAPP'" />

src/Shared.sln.DotSettings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=MergeSequentialChecks/@EntryIndexedValue">ERROR</s:String>
2828
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=NotAccessedField_002ELocal/@EntryIndexedValue">ERROR</s:String>
2929
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=NotAccessedPositionalProperty_002ELocal/@EntryIndexedValue">ERROR</s:String>
30+
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=TailRecursiveCall/@EntryIndexedValue">ERROR</s:String>
3031
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=PatternIsAlwaysTrueOrFalse/@EntryIndexedValue">ERROR</s:String>
3132
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantAssignment/@EntryIndexedValue">ERROR</s:String>
3233
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantBoolCompare/@EntryIndexedValue">ERROR</s:String>

src/Tests/Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<PackageReference Include="Argon" Version="0.14.0" />
1111
<PackageReference Include="Verify.DiffPlex" Version="2.3.0" />
1212
<PackageReference Include="Verify.Xunit" Version="22.8.0" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4" PrivateAssets="All" />
14-
<PackageReference Include="Xunit" Version="2.6.2" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5" PrivateAssets="all" />
14+
<PackageReference Include="Xunit" Version="2.6.3" />
1515
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
1616
<ProjectReference Include="..\MarkdownSnippets\MarkdownSnippets.csproj" />
17-
<PackageReference Include="ProjectDefaults" Version="1.0.106" PrivateAssets="all" />
17+
<PackageReference Include="ProjectDefaults" Version="1.0.107" PrivateAssets="all" />
1818
<None Include="badsnippets\code.txt">
1919
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2020
</None>

0 commit comments

Comments
 (0)