-
Notifications
You must be signed in to change notification settings - Fork 773
Upgrade to .NET 6 #717
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Upgrade to .NET 6 #717
Changes from 6 commits
4641a37
a8f870f
6e43e32
df0671a
3499b39
6d752fe
e497d7a
c58c40b
5e812d1
45ad647
c901143
d1564be
69e8c70
3f750f0
8f3ee24
70ec9dc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,16 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFramework>netstandard2.0</TargetFramework> | ||
|
|
||
| <TargetFramework>net6.0</TargetFramework> | ||
| <PackageTags>NuGet;Protocol</PackageTags> | ||
| <Description>Libraries to interact with NuGet server APIs.</Description> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(MicrosoftExtensionsPackageVersion)" /> | ||
| <PackageReference Include="NuGet.Frameworks" Version="$(NuGetPackageVersion)" /> | ||
| <PackageReference Include="NuGet.Versioning" Version="$(NuGetPackageVersion)" /> | ||
| <PackageReference Include="System.Text.Json" Version="4.7.2" /> | ||
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" /> | ||
| <PackageReference Include="NuGet.Frameworks" Version="6.0.0" /> | ||
| <PackageReference Include="NuGet.Versioning" Version="6.0.0" /> | ||
| <PackageReference Include="System.Text.Json" Version="6.0.1" /> | ||
|
mishamyte marked this conversation as resolved.
Outdated
|
||
| </ItemGroup> | ||
|
|
||
| </Project> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,16 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFramework>netcoreapp3.1</TargetFramework> | ||
| <TargetFramework>net6.0</TargetFramework> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.5.0" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="$(MicrosoftAspNetCorePackageVersion)" /> | ||
| <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="$(MicrosoftEntityFrameworkCorePackageVersion)" /> | ||
| <PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.0.0" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.1" /> | ||
| <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.1"> | ||
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
| <PrivateAssets>all</PrivateAssets> | ||
| </PackageReference> | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's the reason behind this change for
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reason is to define it as design-time dependency for concrete project and does not include it's dll as a part of artifacts or as a part of implicit dependency to other projects (https://docs.microsoft.com/en-us/ef/core/cli/services#referencing-microsoftentityframeworkcoredesign) |
||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.