-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add System.Diagnostics.DiagnosticSource 9.0.0 (#1101)
* add DiagnosticSource 9.0.0 * remove scoped keyword in netstandard2.0 * remove scoped everywhere, add IsExternalInit to netstandard2.0 * Microsoft.NETCore.App.Ref to baseline? * Add Microsoft.NETCore.App.Ref.9.0.0 as a dependent package project * Remove analyers from FrameworkList.xml * Utilize common IsExternalInit.cs --------- Co-authored-by: Michael Simons <[email protected]>
- Loading branch information
1 parent
b24c3aa
commit 44f3339
Showing
12 changed files
with
2,882 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...ystem.diagnostics.diagnosticsource/9.0.0/System.Diagnostics.DiagnosticSource.9.0.0.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;net9.0;netstandard2.0</TargetFrameworks> | ||
<AssemblyName>System.Diagnostics.DiagnosticSource</AssemblyName> | ||
<StrongNameKeyId>Open</StrongNameKeyId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="System.Memory" Version="4.5.5" /> | ||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'"> | ||
<Compile Include="$(CommonSrc)IsExternalInit.cs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
944 changes: 944 additions & 0 deletions
944
...stem.diagnostics.diagnosticsource/9.0.0/lib/net8.0/System.Diagnostics.DiagnosticSource.cs
Large diffs are not rendered by default.
Oops, something went wrong.
944 changes: 944 additions & 0 deletions
944
...stem.diagnostics.diagnosticsource/9.0.0/lib/net9.0/System.Diagnostics.DiagnosticSource.cs
Large diffs are not rendered by default.
Oops, something went wrong.
938 changes: 938 additions & 0 deletions
938
...gnostics.diagnosticsource/9.0.0/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.cs
Large diffs are not rendered by default.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
.../src/system.diagnostics.diagnosticsource/9.0.0/system.diagnostics.diagnosticsource.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>System.Diagnostics.DiagnosticSource</id> | ||
<version>9.0.0</version> | ||
<authors>Microsoft</authors> | ||
<license type="expression">MIT</license> | ||
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl> | ||
<projectUrl>https://dot.net/</projectUrl> | ||
<description>Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) | ||
|
||
Commonly Used Types: | ||
System.Diagnostics.DiagnosticListener | ||
System.Diagnostics.DiagnosticSource</description> | ||
<releaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</releaseNotes> | ||
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
<serviceable>true</serviceable> | ||
<repository type="git" url="https://github.com/dotnet/runtime" commit="9d5a6a9aa463d6d10b0b0ba6d5982cc82f363dc3" /> | ||
<dependencies> | ||
<group targetFramework="net8.0" /> | ||
<group targetFramework="net9.0" /> | ||
<group targetFramework=".NETStandard2.0"> | ||
<dependency id="System.Memory" version="4.5.5" exclude="Build,Analyzers" /> | ||
<dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
<contentFiles> | ||
<files include="any/net462/ILLink/ILLink.Descriptors.LibraryBuild.xml" buildAction="Content" /> | ||
<files include="any/net8.0/ILLink/ILLink.Descriptors.LibraryBuild.xml" buildAction="Content" /> | ||
<files include="any/net9.0/ILLink/ILLink.Descriptors.LibraryBuild.xml" buildAction="Content" /> | ||
<files include="any/netstandard2.0/ILLink/ILLink.Descriptors.LibraryBuild.xml" buildAction="Content" /> | ||
</contentFiles> | ||
</metadata> | ||
</package> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions
6
src/targetPacks/ILsrc/microsoft.netcore.app.ref/9.0.0/data/FrameworkList.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters