Skip to content

Commit

Permalink
WiP
Browse files Browse the repository at this point in the history
  • Loading branch information
scottt732 committed Dec 18, 2023
1 parent c88aea9 commit 73e3642
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
</ItemGroup>

<ItemGroup Label="Package References">
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All" Version="2023.2.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" PrivateAssets="All" Version="17.7.30" />
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All" Version="2023.3.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" PrivateAssets="All" Version="[17.8.14,)" />
<PackageReference Include="MinVer" PrivateAssets="All" Version="4.3.0" />
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" Version="1.1.118" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</PropertyGroup>

<ItemGroup Label="Package References">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Version="1.1.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" Version="8.0.0" />
</ItemGroup>

<ItemGroup Label="Files">
Expand Down
10 changes: 5 additions & 5 deletions Source/Sholo.Utils/Sholo.Utils.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup Label="Build">
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Label="Package">
Expand All @@ -10,16 +10,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="[7.0.0,)" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="[7.0.0,)" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="[8.0.0,)" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="[8.0.0,)" />
<PackageReference Include="MiniValidation" Version="0.9.0" />
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="[3.1.0,4.0.0)" />
<PackageReference Include="Serilog.Expressions" Version="[3.4.1,)" />
<PackageReference Include="Serilog.Extensions.Logging" Version="[3.1.0,)" />
<PackageReference Include="Serilog.Settings.Configuration" Version="[7.0.1,)" />
<PackageReference Include="Serilog.Settings.Configuration" Version="[8.0.0,)" />
<PackageReference Include="Serilog.Sinks.Console" Version="[4.1.0,)" />
<PackageReference Include="YamlDotNet" Version="[13.4.0,14.0.0)" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.2" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="[8.0.0,)" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" PrivateAssets="All" Version="2.5.1">
Expand Down
4 changes: 2 additions & 2 deletions Tests/Sholo.Utils.Test/Sholo.Utils.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup Label="Build">
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup Label="Project References">
Expand All @@ -13,7 +13,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Update="Moq" Version="4.20.69" />
</ItemGroup>

Expand Down
3 changes: 2 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"sdk": {
"version": "8.0.100",
"rollForward": "latestMinor",
"version": "7.0.401"
"allowPrerelease": false
}
}

0 comments on commit 73e3642

Please sign in to comment.