Skip to content

Commit 4d9027e

Browse files
author
bjansen
committed
Version 1.17.0
1 parent c42cf43 commit 4d9027e

8 files changed

+11
-11
lines changed

build/release-official.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dotnet build $PSScriptRoot\..\src\lib\PnP.Framework\PnP.Framework.csproj --confi
1515

1616
# Sign the binaries
1717
Write-Host "Signing the binaries..."
18-
d:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies
18+
q:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies
1919

2020
# Package the release version
2121
Write-Host "Packinging PnP.Framework version $version..."
@@ -30,7 +30,7 @@ $apiKey = Read-Host "NuGet API key"
3030
if ($apiKey.Length -gt 0)
3131
{
3232
# Push the actual package and the symbol package
33-
nuget push d:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json
33+
nuget push q:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json
3434

3535
# Persist last used version
3636
Write-Host "Writing $version to git"

build/release-signed-nightly.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dotnet build $PSScriptRoot\..\src\lib\PnP.Framework\PnP.Framework.csproj --confi
1515

1616
# Sign the binaries
1717
Write-Host "Signing the binaries..."
18-
d:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies
18+
q:\github\SharePointPnP\CodeSigning\PnP\sign-pnpbinaries.ps1 -SignJson pnpframeworkassemblies
1919

2020
# Package the release version
2121
Write-Host "Packinging PnP.Framework version $version..."
@@ -30,7 +30,7 @@ $apiKey = Read-Host "NuGet API key"
3030
if ($apiKey.Length -gt 0)
3131
{
3232
# Push the actual package and the symbol package
33-
nuget push d:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json
33+
nuget push q:\github\pnpframework\src\lib\PnP.Framework\bin\release\PnP.Framework.$version.nupkg -ApiKey $apiKey -source https://api.nuget.org/v3/index.json
3434

3535
# Persist last used version
3636
Write-Host "Writing $version to git"

build/version.debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.16.{incremental}-nightly
1+
1.17.{incremental}-nightly

build/version.debug.increment

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7
1+
0

build/version.release.increment

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16
1+
17

src/lib/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.
66

77
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
88

9-
## [Unreleased]
9+
## [1.17.0]
1010

1111
### Added
1212

src/lib/PnP.Framework.Test/PnP.Framework.Test.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
<PackageReference Include="PrivateObjectExtensions" Version="1.4.0" />
187187
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
188188
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.0" />
189-
<PackageReference Include="PnP.Core" Version="1.13.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
189+
<PackageReference Include="PnP.Core" Version="1.14.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
190190
</ItemGroup>
191191

192192
<ItemGroup>

src/lib/PnP.Framework/PnP.Framework.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<LangVersion>10.0</LangVersion>
66
<RootNamespace>PnP.Framework</RootNamespace>
77
<AssemblyName>PnP.Framework</AssemblyName>
8-
<Version>1.16.0</Version>
8+
<Version>1.17.0</Version>
99
<Authors>PnP</Authors>
1010
<Copyright>PnP 2024</Copyright>
1111
<Description>PnP Framework contains the PnP Provisioning engine and a ton of extension methods that will make you more productive while developing for Microsoft 365.</Description>
@@ -257,7 +257,7 @@
257257
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
258258
<PackageReference Include="Microsoft.SharePointOnline.CSOM" Version="16.1.*" />
259259
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
260-
<PackageReference Include="PnP.Core" Version="1.13.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
260+
<PackageReference Include="PnP.Core" Version="1.14.*-*" Condition="'$(PnPCoreSdkPath)' == ''" />
261261
<PackageReference Include="Portable.Xaml" Version="0.26.0" />
262262
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.35.0" />
263263
</ItemGroup>

0 commit comments

Comments
 (0)