-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Targeting pack support for .NET Core 3.0 #9744
Comments
🙏 |
Same as for https://github.com/dotnet/cli/issues/10007, please consider:
|
More design details will follow, but at a very high level we are looking at having the experience be that if you do not have the targeting pack globally installed / bundled with SDK, then nuget restore would pull it down to nuget cache via NuGet/Home#7339 |
Ideally, this shouldn't break usages of MetadataReference[] _ref =
DependencyContext.Default.CompileLibraries
.First(cl => cl.Name == "Microsoft.NETCore.App")
.ResolveReferencePaths()
.Select(asm => MetadataReference.CreateFromFile(asm))
.ToArray(); when using It should only need an update to the dependency model NuGet package. |
Hello,
This does not work to me. My Dockerfile:
When i run the above command i got the following message:
I have tried to point a specific .csproj file with no luck. :( Can anybody help me with this? Or can anybody explain me how to build (for run stylecop really) a multiple .csproj project in a CI pipeline? Thank you |
For .NET Core 3.0, we expect to separate targeting packs, which contain the assets needed at build time when targeting .NET Core 3.0 (for example, reference assemblies and intellisense documentation) from "runtime packs", which will include the platform-specific runtime components for .NET Core 3.
This issue tracks the work required in order to support targeting packs. This may include:
dotnet targeting-pack install netcoreapp3.0
)Finer-grained issues for these tasks will be filed as necessary
The text was updated successfully, but these errors were encountered: