Skip to content
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

ICU4N.Resources.csproj: Removed NETStandard.Library as a transitive dependency #86

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .build/dependencies.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<MicrosoftSourceLinkGitHubPackageReferenceVersion>$(MicrosoftSourceLinkAzureReposGitPackageReferenceVersion)</MicrosoftSourceLinkGitHubPackageReferenceVersion>
<NerdBankGitVersioningPackageReferenceVersion>[3.5.73-alpha]</NerdBankGitVersioningPackageReferenceVersion>
<NetFxSystemMemoryPackageReferenceVersion>4.0.0</NetFxSystemMemoryPackageReferenceVersion>
<NETStandardLibrary10PackageReferenceVersion>1.6.1</NETStandardLibrary10PackageReferenceVersion>
<NETStandardLibrary20PackageReferenceVersion>2.0.3</NETStandardLibrary20PackageReferenceVersion>
<NUnitPackageReferenceVersion>3.12.0</NUnitPackageReferenceVersion>
<NUnit3TestAdapterPackageReferenceVersion>4.6.0</NUnit3TestAdapterPackageReferenceVersion>
Expand Down
5 changes: 5 additions & 0 deletions src/ICU4N.Resources/ICU4N.Resources.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,9 @@
<None Include="$(ICU4NSatelliteAssemblyOutputDir)/**/*.resources.dll" Pack="true" PackagePath="lib/netstandard1.0" Visible="false" />
</ItemGroup>

<ItemGroup>
<!-- Reference NETStandard.Library for .NET Standard 1.0, but avoid including it as a transitive dependency -->
<PackageReference Update="NETStandard.Library" Version="$(NETStandardLibrary10PackageReferenceVersion)" PrivateAssets="All" />
</ItemGroup>

</Project>