Skip to content

Commit 33a57e3

Browse files
committed
Stop using NuGet's Central Package Version Management feature
1 parent 877553e commit 33a57e3

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

AspNet.Security.OAuth.Providers.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
121121
CODE_OF_CONDUCT.md = CODE_OF_CONDUCT.md
122122
Directory.Build.props = Directory.Build.props
123123
Directory.Build.targets = Directory.Build.targets
124-
Directory.Packages.props = Directory.Packages.props
125124
global.json = global.json
126125
LICENSE = LICENSE
127126
NuGet.config = NuGet.config
128127
package-icon.png = package-icon.png
128+
Packages.props = Packages.props
129129
README.md = README.md
130130
stylecop.json = stylecop.json
131131
EndProjectSection

Directory.Build.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<DebugSymbols>true</DebugSymbols>
1010
<DebugType>portable</DebugType>
1111
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
12-
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
1312
<DefineConstants Condition=" '$(Configuration)' == 'Debug' ">$(DefineConstants);JETBRAINS_ANNOTATIONS</DefineConstants>
1413
<Nullable>enable</Nullable>
1514
</PropertyGroup>

Directory.Build.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22

33
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
4+
<Import Project="Packages.props" />
45

56
<!--
67
Note: Arcade automatically replaces copyrights defined in .props or .csproj files

Directory.Packages.props

Lines changed: 0 additions & 19 deletions
This file was deleted.

Packages.props

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project>
2+
3+
<ItemGroup>
4+
<PackageReference Update="JetBrains.Annotations" Version="2020.1.0" />
5+
<PackageReference Update="JustEat.HttpClientInterception" Version="3.0.0" />
6+
<PackageReference Update="MartinCostello.Logging.XUnit" Version="0.1.0" />
7+
<PackageReference Update="Microsoft.AspNetCore.Authentication.Google" Version="3.1.7" />
8+
<PackageReference Update="Microsoft.AspNetCore.Authentication.Twitter" Version="3.1.7" />
9+
<PackageReference Update="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.7" />
10+
<PackageReference Update="Microsoft.AspNetCore.TestHost" Version="3.1.7" />
11+
<PackageReference Update="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0" />
12+
<PackageReference Update="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="5.5.0" />
13+
<PackageReference Update="Moq" Version="4.14.5" />
14+
<PackageReference Update="Shouldly" Version="3.0.2" />
15+
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118" />
16+
<PackageReference Update="System.IdentityModel.Tokens.Jwt" Version="5.5.0" />
17+
</ItemGroup>
18+
19+
</Project>

0 commit comments

Comments
 (0)