Skip to content

Commit

Permalink
Update to use .NET 7 GA
Browse files Browse the repository at this point in the history
  • Loading branch information
jansenbe committed Nov 9, 2022
1 parent 446fd66 commit 9adfe14
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildandtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
include-prerelease: true
include-prerelease: false
- name: Install dependencies
run: dotnet restore
working-directory: src/lib
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightlynuget_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
include-prerelease: true
include-prerelease: false
- name: Create and publish nuget
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
Expand Down
16 changes: 8 additions & 8 deletions src/lib/PnP.Framework/PnP.Framework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,14 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.16.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0-*" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0-*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0-*" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0-*" />
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0-*" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0-*" />
<PackageReference Include="System.DirectoryServices" Version="7.0.0-*" />
<PackageReference Include="System.IO.Packaging" Version="7.0.0-*" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
<PackageReference Include="System.DirectoryServices" Version="7.0.0" />
<PackageReference Include="System.IO.Packaging" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 9adfe14

Please sign in to comment.