Skip to content

Commit cebe58e

Browse files
Update package references. Fixes #809
1 parent d71f5ca commit cebe58e

File tree

20 files changed

+32
-22
lines changed

20 files changed

+32
-22
lines changed

build/nuget.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
</PropertyGroup>
3636

3737
<ItemGroup Label="SourceLink">
38-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-*" PrivateAssets="All"/>
38+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1-*" PrivateAssets="All"/>
3939
</ItemGroup>
4040

4141
</Project>

samples/webapi/AdvancedODataWebApiSample/AdvancedODataWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
</PropertyGroup>
88

samples/webapi/BasicODataWebApiSample/BasicODataWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
</PropertyGroup>
88

samples/webapi/BasicWebApiSample/BasicWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
</PropertyGroup>
88

samples/webapi/ByNamespaceWebApiSample/ByNamespaceWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
</PropertyGroup>
88

samples/webapi/ConventionsODataWebApiSample/ConventionsODataWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
</PropertyGroup>
88

samples/webapi/ConventionsWebApiSample/ConventionsWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
</PropertyGroup>
88

samples/webapi/SwaggerODataWebApiSample/SwaggerODataWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(MSBuildThisFileName).xml</DocumentationFile>
88
</PropertyGroup>

samples/webapi/SwaggerWebApiSample/SwaggerWebApiSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net461</TargetFramework>
5+
<TargetFramework>net472</TargetFramework>
66
<RootNamespace>Microsoft.Examples</RootNamespace>
77
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(MSBuildThisFileName).xml</DocumentationFile>
88
</PropertyGroup>

src/Microsoft.AspNet.OData.Versioning.ApiExplorer/Microsoft.AspNet.OData.Versioning.ApiExplorer.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
<ProjectReference Include="..\Microsoft.AspNet.WebApi.Versioning.ApiExplorer\Microsoft.AspNet.WebApi.Versioning.ApiExplorer.csproj" />
2323
</ItemGroup>
2424

25+
<ItemGroup>
26+
<PackageReference Include="microsoft.netframework.referenceassemblies.net45" Version="1.0.2" PrivateAssets="All" />
27+
</ItemGroup>
28+
2529
<ItemGroup>
2630
<Reference Include="Microsoft.CSharp" />
2731
<Reference Include="System" />

src/Microsoft.AspNet.OData.Versioning/Microsoft.AspNet.OData.Versioning.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.AspNet.OData" Version="[7.5.8,8.0.0)" />
19+
<PackageReference Include="Microsoft.AspNet.OData" Version="[7.5.14,8.0.0)" />
20+
<PackageReference Include="microsoft.netframework.referenceassemblies.net45" Version="1.0.2" PrivateAssets="All" />
2021
</ItemGroup>
2122

2223
<ItemGroup>

src/Microsoft.AspNet.WebApi.Versioning.ApiExplorer/Microsoft.AspNet.WebApi.Versioning.ApiExplorer.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<Compile Include="..\Shared\SharedAssemblyInfo.cs" Link="SharedAssemblyInfo.cs" />
15+
<Compile Include="..\Shared\SharedAssemblyInfo.cs" Link="SharedAssemblyInfo.cs" />
1616
</ItemGroup>
1717

1818
<ItemGroup>
1919
<ProjectReference Include="..\Microsoft.AspNet.WebApi.Versioning\Microsoft.AspNet.WebApi.Versioning.csproj" />
2020
</ItemGroup>
2121

22+
<ItemGroup>
23+
<PackageReference Include="microsoft.netframework.referenceassemblies.net45" Version="1.0.2" PrivateAssets="All" />
24+
</ItemGroup>
25+
2226
<ItemGroup>
2327
<Reference Include="System" />
2428
<Reference Include="Microsoft.CSharp" />

src/Microsoft.AspNet.WebApi.Versioning/Microsoft.AspNet.WebApi.Versioning.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
<ItemGroup>
1515
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="[5.2.3,6.0.0)" />
16+
<PackageReference Include="microsoft.netframework.referenceassemblies.net45" Version="1.0.2" PrivateAssets="All" />
1617
</ItemGroup>
1718

1819
<ItemGroup>

src/Microsoft.AspNetCore.OData.Versioning.ApiExplorer/Microsoft.AspNetCore.OData.Versioning.ApiExplorer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</ItemGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
20+
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

test/Microsoft.AspNet.OData.Versioning.ApiExplorer.Tests/Microsoft.AspNet.OData.Versioning.ApiExplorer.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net461</TargetFramework>
4+
<TargetFramework>net472</TargetFramework>
55
<RootNamespace>Microsoft</RootNamespace>
66
</PropertyGroup>
77

test/Microsoft.AspNet.OData.Versioning.Tests/Microsoft.AspNet.OData.Versioning.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net461</TargetFramework>
4+
<TargetFramework>net472</TargetFramework>
55
<RootNamespace>Microsoft.AspNet.OData</RootNamespace>
66
<DefineConstants>$(DefineConstants);WEBAPI</DefineConstants>
77
</PropertyGroup>

test/Microsoft.AspNet.WebApi.Acceptance.Tests/Microsoft.AspNet.WebApi.Acceptance.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net461</TargetFramework>
4+
<TargetFramework>net472</TargetFramework>
55
<RootNamespace>Microsoft.Web</RootNamespace>
66
<DefineConstants>$(DefineConstants);WEBAPI</DefineConstants>
77
<NoWarn>CS0618</NoWarn>

test/Microsoft.AspNet.WebApi.Versioning.ApiExplorer.Tests/Microsoft.AspNet.WebApi.Versioning.ApiExplorer.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net452</TargetFramework>
4+
<TargetFramework>net472</TargetFramework>
55
<RootNamespace>Microsoft.Web.Http</RootNamespace>
66
</PropertyGroup>
77

test/Microsoft.AspNet.WebApi.Versioning.Tests/Microsoft.AspNet.WebApi.Versioning.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net452</TargetFramework>
4+
<TargetFramework>net472</TargetFramework>
55
<RootNamespace>Microsoft.Web.Http</RootNamespace>
66
<DefineConstants>$(DefineConstants);WEBAPI</DefineConstants>
77
</PropertyGroup>

test/directory.build.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
</ItemGroup>
1616

1717
<ItemGroup Condition=" '$(MSBuildProjectExtension)' != '.shproj' ">
18-
<PackageReference Include="FluentAssertions" Version="5.9.0" />
19-
<PackageReference Include="Moq" Version="4.13.1" />
18+
<PackageReference Include="FluentAssertions" Version="5.10.3" />
19+
<PackageReference Include="Moq" Version="4.17.2" />
2020
<PackageReference Include="xunit" Version="2.4.1" />
21-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
21+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
2222
</ItemGroup>
2323

2424
<ItemGroup Condition=" '$(IsAspNetCore)' == 'true' ">
25-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
26-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.0-*" />
25+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
26+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.1.23-*" />
2727
</ItemGroup>
2828

2929
</Project>

0 commit comments

Comments
 (0)