Skip to content

Commit

Permalink
Upgrade Remora.Sdk and nuget packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihlus committed Nov 20, 2022
1 parent 37c356e commit aa452c2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v2
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: |
6.0.x
7.0.x
- name: Build
run: |
Expand Down
19 changes: 8 additions & 11 deletions Remora.Commands/Remora.Commands.csproj
Original file line number Diff line number Diff line change
@@ -1,29 +1,26 @@
<Project Sdk="Remora.Sdk/1.0.0">
<Project Sdk="Remora.Sdk/2.0.1">

<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>10.0.2</VersionPrefix>
<VersionPrefix>10.0.3</VersionPrefix>
<Description>A platform-agnostic command parser and dispatcher.</Description>
<PackageReleaseNotes>
Fix malformed XML.
Update StyleCop.Analyzers.
Update Remora.Results.
Fix naming.
Reorder attributes.
Add ImplicitUseKindFlags.
Upgrade Remora.Sdk.
Upgrade nuget packages.
</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
<PackageReference Include="Nullability.Source" Version="2.0.1">
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
<PackageReference Include="Nullability.Source" Version="2.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Remora.Results" Version="7.2.2" />
<PackageReference Include="Remora.Results" Version="7.2.3" />
<PackageReference Update="Remora.Results.Analyzers" Version="1.0.0" />
</ItemGroup>

</Project>
5 changes: 3 additions & 2 deletions Tests/Remora.Commands.Tests/Remora.Commands.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<Project Sdk="Remora.Tests.Sdk/1.0.0">
<Project Sdk="Remora.Tests.Sdk/2.0.2">
<ItemGroup>
<ProjectReference Include="..\..\Remora.Commands\Remora.Commands.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Update="Remora.Results.Analyzers" Version="1.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit aa452c2

Please sign in to comment.