Skip to content

Commit

Permalink
Update to use PnP Core SDK 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jansenbe committed Mar 10, 2021
1 parent de9dd6e commit 01e23a7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Binary file removed PnP dotnet Roadmap - January status2.png
Binary file not shown.
Binary file added PnP dotnet Roadmap - March status.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ This library is the cross platform successor of the [PnP-Sites-Core](https://git

## PnP .NET roadmap status

We've shipped version 1.0.0 of PnP Framework (GA 🎉) and beta 2 of the [PnP Core SDK](https://github.com/pnp/pnpcore).
We've shipped version 1.2.0 of PnP Framework and version 1.0.0 (GA 🎉) of the [PnP Core SDK](https://github.com/pnp/pnpcore).

![PnP dotnet roadmap](PnP%20dotnet%20Roadmap%20-%20January%20status2.png)
![PnP dotnet roadmap](PnP%20dotnet%20Roadmap%20-%20March%20status.png)

## I've found a bug, where do I need to log an issue or create a PR

Expand Down
2 changes: 1 addition & 1 deletion src/lib/PnP.Framework.Test/PnP.Framework.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
</PackageReference>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="5.0.0" />
<PackageReference Include="PnP.Core" Version="0.6.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
<PackageReference Include="PnP.Core" Version="1.0.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/PnP.Framework.Test/PnPCoreSdk/PnPCoreSdkTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void GetWebTest()
{
using (PnPContext context = PnPCoreSdk.Instance.GetPnPContext(cc))
{
var web = context.Web.Get();
var web = context.Web.GetAsync().GetAwaiter().GetResult();
Assert.IsTrue(web.Title != null);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/PnP.Framework/PnP.Framework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
<PackageReference Include="Microsoft.Identity.Client" Version="4.21.0" />
<PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.*" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="PnP.Core" Version="0.6.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
<PackageReference Include="PnP.Core" Version="1.0.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
<PackageReference Include="Portable.Xaml" Version="0.26.0" />
<PackageReference Include="ResXResourceReader.NetStandard" Version="1.0.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.8.0" />
Expand Down

0 comments on commit 01e23a7

Please sign in to comment.