This repository was archived by the owner on Dec 14, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 15 files changed +97
-106
lines changed
Microsoft.Extensions.ApiDescription.Design
Microsoft.AspNetCore.Mvc.Core.Test/ModelBinding Expand file tree Collapse file tree 15 files changed +97
-106
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22 <PropertyGroup >
3- <TargetFrameworks >netcoreapp2.2 </TargetFrameworks >
3+ <TargetFrameworks >netcoreapp3.0 </TargetFrameworks >
44 <TargetFrameworks Condition =" '$(DeveloperBuild)' != 'true' AND '$(OS)' == 'Windows_NT' " >$(TargetFrameworks);net461</TargetFrameworks >
55 <TargetFrameworks Condition =" '$(BenchmarksTargetFramework)' != ''" >$(BenchmarksTargetFramework)</TargetFrameworks >
66
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22 <PropertyGroup >
3- <TargetFrameworks >netcoreapp2.2 </TargetFrameworks >
3+ <TargetFrameworks >netcoreapp3.0 </TargetFrameworks >
44 <TargetFrameworks Condition =" '$(DeveloperBuild)' != 'true' AND '$(OS)' == 'Windows_NT' " >$(TargetFrameworks);net461</TargetFrameworks >
55 <TargetFrameworks Condition =" '$(BenchmarksTargetFramework)' != ''" >$(BenchmarksTargetFramework)</TargetFrameworks >
66
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22 <PropertyGroup >
3- <TargetFrameworks >netcoreapp2.2 </TargetFrameworks >
3+ <TargetFrameworks >netcoreapp3.0 </TargetFrameworks >
44 </PropertyGroup >
55
66 <!-- These references are used when running locally -->
1616 These references are used when running on the Benchmarks Server.
1717 -->
1818 <ItemGroup Condition =" '$(BenchmarksTargetFramework)' != ''" >
19- <PackageReference Include =" Microsoft.AspNetCore.App" Version =" $(MicrosoftNETCoreApp22PackageVersion )" />
20- <PackageReference Include =" Microsoft.NET.Sdk.Razor" Version =" $(MicrosoftNETCoreApp22PackageVersion )" PrivateAssets =" All" />
19+ <PackageReference Include =" Microsoft.AspNetCore.App" Version =" $(MicrosoftNETCoreApp30PackageVersion )" />
20+ <PackageReference Include =" Microsoft.NET.Sdk.Razor" Version =" $(MicrosoftNETCoreApp30PackageVersion )" PrivateAssets =" All" />
2121 </ItemGroup >
2222 <ItemGroup >
2323 <Folder Include =" Properties\" />
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 2020
2121 <ItemGroup >
2222 <DotNetCoreRuntime Include =" $(MicrosoftNETCoreApp21PackageVersion)" />
23- <DotNetCoreRuntime Include =" $(MicrosoftNETCoreApp22PackageVersion )" />
23+ <DotNetCoreRuntime Include =" $(MicrosoftNETCoreApp30PackageVersion )" />
2424 </ItemGroup >
2525</Project >
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
3- "version" : " 2.2 .100-preview2-009404 "
3+ "version" : " 3.0 .100-alpha1-009708 "
44 },
55 "msbuild-sdks" : {
6- "Internal.AspNetCore.Sdk" : " 3.0.0-alpha1-20181011.11 "
6+ "Internal.AspNetCore.Sdk" : " 3.0.0-alpha1-20181031.3 "
77 }
88}
Original file line number Diff line number Diff line change 1- version:3.0.0-alpha1-20181011.11
2- commithash:f57aa8ddda0abdd74ada55853587bedb4f364065
1+ version:3.0.0-alpha1-20181031.3
2+ commithash:93e5628f435045e3f2a766933dc5062048ac0426
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
4- <TargetFrameworks >netcoreapp2.2 </TargetFrameworks >
4+ <TargetFrameworks >netcoreapp3.0 </TargetFrameworks >
55 <TargetFrameworks Condition =" '$(DeveloperBuild)' != 'true' AND '$(OS)' == 'Windows_NT' " >$(TargetFrameworks);net461</TargetFrameworks >
66 </PropertyGroup >
77
1111
1212 <ItemGroup >
1313 <ProjectReference Include =" ..\..\src\Microsoft.AspNetCore.Mvc\Microsoft.AspNetCore.Mvc.csproj" />
14-
1514 <PackageReference Include =" Microsoft.AspNetCore.Diagnostics" Version =" $(MicrosoftAspNetCoreDiagnosticsPackageVersion)" />
16- <PackageReference Include =" Microsoft.AspNetCore.Mvc.Razor.Extensions" Version =" $(MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion)" />
17- <PackageReference Include =" Microsoft.AspNetCore.Razor.Design" Version =" $(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
1815 <PackageReference Include =" Microsoft.AspNetCore.Server.IISIntegration" Version =" $(MicrosoftAspNetCoreServerIISIntegrationPackageVersion)" />
1916 <PackageReference Include =" Microsoft.AspNetCore.Server.Kestrel" Version =" $(MicrosoftAspNetCoreServerKestrelPackageVersion)" />
2017 <PackageReference Include =" Microsoft.AspNetCore.StaticFiles" Version =" $(MicrosoftAspNetCoreStaticFilesPackageVersion)" />
Original file line number Diff line number Diff line change 1919 <ProjectReference Include =" ..\Microsoft.AspNetCore.Mvc.TagHelpers\Microsoft.AspNetCore.Mvc.TagHelpers.csproj" />
2020 <ProjectReference Include =" ..\Microsoft.AspNetCore.Mvc.ViewFeatures\Microsoft.AspNetCore.Mvc.ViewFeatures.csproj" />
2121
22- <!-- Including these here specifically so that apps referencing the MVC package get razor compiler targets -->
23- <PackageReference Include =" Microsoft.AspNetCore.Razor.Design" Version =" $(MicrosoftAspNetCoreRazorDesignPackageVersion)" >
24- <PrivateAssets >None</PrivateAssets >
25- </PackageReference >
26- <PackageReference Include =" Microsoft.AspNetCore.Mvc.Razor.Extensions" Version =" $(MicrosoftAspNetCoreMvcRazorExtensionsPackageVersion)" >
27- <PrivateAssets >None</PrivateAssets >
28- </PackageReference >
2922 <PackageReference Include =" Microsoft.Extensions.Caching.Memory" Version =" $(MicrosoftExtensionsCachingMemoryPackageVersion)" />
3023 <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" $(MicrosoftExtensionsDependencyInjectionPackageVersion)" />
3124 </ItemGroup >
Original file line number Diff line number Diff line change 4242 <PackagePath >tools/dotnet-getdocument.dll</PackagePath >
4343 <StrongName >$(AssemblySigningStrongName)</StrongName >
4444 </SignedPackageFile >
45+ <SignedPackageFile Include =" ../dotnet-getdocument/bin/$(Configuration)/netcoreapp2.1/publish/dotnet-getdocument.exe" >
46+ <Certificate >$(AssemblySigningCertName)</Certificate >
47+ <PackagePath >tools/dotnet-getdocument.exe</PackagePath >
48+ <StrongName >$(AssemblySigningStrongName)</StrongName >
49+ </SignedPackageFile >
4550 <SignedPackageFile Include =" ../GetDocumentInsider/bin/$(Configuration)/net461/GetDocument.Insider.exe" >
4651 <Certificate >$(AssemblySigningCertName)</Certificate >
4752 <PackagePath >tools/net461/GetDocument.Insider.exe</PackagePath >
You can’t perform that action at this time.
0 commit comments