-
Notifications
You must be signed in to change notification settings - Fork 753
Apply source-build patches #4404
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
Changes from all commits
adbf10e
9b73ce6
0d21314
24ef9df
261155f
4d08aee
000e5c7
3e553fe
a216314
b06adf5
ecb957b
e45613c
89da726
d23d7a9
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 |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ | |
| <Description>NuGet's configuration settings implementation.</Description> | ||
| <NoWarn>$(NoWarn);CS1591</NoWarn> | ||
| <TargetFrameworks>$(TargetFrameworksLibrary)</TargetFrameworks> | ||
| <TargetFrameworks Condition="'$(IsBuildOnlyXPLATProjects)' != 'true'">$(TargetFrameworks);net45</TargetFrameworks> | ||
| <TargetFrameworks Condition="'$(DotNetBuildFromSource)' != 'true'">$(TargetFrameworks);net45</TargetFrameworks> | ||
|
nkolev92 marked this conversation as resolved.
Outdated
|
||
| <TargetFramework /> | ||
| <PackProject>true</PackProject> | ||
| <Shipping>true</Shipping> | ||
|
|
@@ -23,13 +23,13 @@ | |
| <ProjectReference Include="$(NuGetCoreSrcDirectory)NuGet.Common\NuGet.Common.csproj" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == '$(NETFXTargetFramework)' or '$(TargetFramework)' == 'net45' "> | ||
| <ItemGroup Condition=" '$(TargetFramework)' == '$(NETFXTargetFramework)' or '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'netstandard2.0' "> | ||
| <Reference Include="System.Security" /> | ||
| <Reference Include="System.Xml" /> | ||
| <Reference Include="System.Xml.Linq" /> | ||
|
Comment on lines
+26
to
29
Member
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. Same as previous comment, doesn't the .NET SDK add these BCL references automatically for .NET Standard?
Member
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 netstandard condition was removed from NuGet.Common.csproj, but not here. |
||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == '$(NetStandardVersion)' "> | ||
| <ItemGroup Condition=" '$(TargetFramework)' == '$(NetStandardVersion)' or '$(TargetFramework)' == 'net6.0' "> | ||
| <PackageReference Include="System.Security.Cryptography.ProtectedData" /> | ||
| </ItemGroup> | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.