Skip to content

Commit

Permalink
Upgrade packages. (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
defectiveAi authored Nov 27, 2024
1 parent 55eec8b commit ed4bc04
Show file tree
Hide file tree
Showing 17 changed files with 1,266 additions and 118 deletions.
542 changes: 542 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<Project>
<!--
Add stylecop for all projects (so long as they don't override Directory.Build.props) with a common ruleset.
See also: https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2019#search-scope
-->
<PropertyGroup>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)'=='Debug'">
<EditorConfigFiles Include="$(MSBuildThisFileDirectory)\source\debug.editorconfig" Link=".editorconfig"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

<!--
Additional settings for specific rules (e.g. SA1200 specify namespaces must be placed correctly, the json file then defines what "correctly" means)
See also [stylecop.json](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/Configuration.md)
-->
<AdditionalFiles Include="$(MSBuildThisFileDirectory)\stylecop.json" />
</ItemGroup>
</Project>
35 changes: 16 additions & 19 deletions SettlementReport.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "source", "source", "{9805FFFF-9C74-4E1F-9FE8-0423C9469E33}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "settlement-report", "settlement-report", "{8A8252D2-968E-4097-8D84-5E1A4287AB23}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hosts", "Hosts", "{9805FFFF-9C74-4E1F-9FE8-0423C9469E33}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common.Infrastructure", "source\settlement-report\Common.Infrastructure\Common.Infrastructure.csproj", "{90CB46D5-6345-40A2-BACC-9D3C211EF692}"
EndProject
Expand All @@ -31,14 +29,15 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SettlementReports.UnitTests
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SettlementReports.Function", "source\settlement-report\SettlementReports.Function\SettlementReports.Function.csproj", "{323D0FB4-7D5C-4C44-8C52-C629766750F8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "legacy", "legacy", "{DA1A3074-1719-45B5-BECE-703B9AA1F9CB}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{92E7938D-A590-44A7-9720-DCA505366390}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{90CB46D5-6345-40A2-BACC-9D3C211EF692}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{90CB46D5-6345-40A2-BACC-9D3C211EF692}.Debug|Any CPU.Build.0 = Debug|Any CPU
Expand Down Expand Up @@ -89,19 +88,17 @@ Global
{323D0FB4-7D5C-4C44-8C52-C629766750F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{323D0FB4-7D5C-4C44-8C52-C629766750F8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{8A8252D2-968E-4097-8D84-5E1A4287AB23} = {9805FFFF-9C74-4E1F-9FE8-0423C9469E33}
{90CB46D5-6345-40A2-BACC-9D3C211EF692} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{A119215C-4161-4BDC-8E7C-0DA6DD655079} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{EB86F2BA-AC67-4A51-BDD7-E391CDFDF265} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{F16F641E-9989-4BD9-97D8-2135DD52B803} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{63FCEA68-F792-4860-88AD-7EF163AD667F} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{016FF5AF-759C-4A11-ABA1-723C6F925953} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{90B61921-AF88-4010-AFB8-08FAA3EBF173} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{401D1558-5548-455F-B6DE-619DD9ECB8BB} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{B9A8CF9A-7B62-481E-A155-DA07CD3172E9} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{16B95F69-FEED-4E17-9010-B97C3591CBD5} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{AC7E764C-12EF-492A-A60D-2E284AF2D31D} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{323D0FB4-7D5C-4C44-8C52-C629766750F8} = {8A8252D2-968E-4097-8D84-5E1A4287AB23}
{A119215C-4161-4BDC-8E7C-0DA6DD655079} = {DA1A3074-1719-45B5-BECE-703B9AA1F9CB}
{F16F641E-9989-4BD9-97D8-2135DD52B803} = {92E7938D-A590-44A7-9720-DCA505366390}
{63FCEA68-F792-4860-88AD-7EF163AD667F} = {DA1A3074-1719-45B5-BECE-703B9AA1F9CB}
{016FF5AF-759C-4A11-ABA1-723C6F925953} = {9805FFFF-9C74-4E1F-9FE8-0423C9469E33}
{B9A8CF9A-7B62-481E-A155-DA07CD3172E9} = {92E7938D-A590-44A7-9720-DCA505366390}
{AC7E764C-12EF-492A-A60D-2E284AF2D31D} = {92E7938D-A590-44A7-9720-DCA505366390}
{323D0FB4-7D5C-4C44-8C52-C629766750F8} = {9805FFFF-9C74-4E1F-9FE8-0423C9469E33}
{DA1A3074-1719-45B5-BECE-703B9AA1F9CB} = {9805FFFF-9C74-4E1F-9FE8-0423C9469E33}
EndGlobalSection
EndGlobal
Loading

0 comments on commit ed4bc04

Please sign in to comment.