File tree Expand file tree Collapse file tree 4 files changed +35
-26
lines changed
tests/Aspire.TestUtilities Expand file tree Collapse file tree 4 files changed +35
-26
lines changed Original file line number Diff line number Diff line change 1+ // Licensed to the .NET Foundation under one or more agreements.
2+ // The .NET Foundation licenses this file to you under the MIT license.
3+
4+ #if NETFRAMEWORK
5+
6+ namespace System . Runtime . CompilerServices ;
7+
8+ internal static class IsExternalInit
9+ {
10+ }
11+
12+ #endif
Original file line number Diff line number Diff line change 1+ // Licensed to the .NET Foundation under one or more agreements.
2+ // The .NET Foundation licenses this file to you under the MIT license.
3+
4+ #if NETFRAMEWORK
5+
6+ namespace System ;
7+
8+ internal static class FrameworkExtensions
9+ {
10+ extension ( OperatingSystem )
11+ {
12+ public static bool IsLinux ( ) => false ;
13+ public static bool IsWindows ( ) => true ;
14+ public static bool IsMacOS ( ) => false ;
15+ }
16+ }
17+
18+ #endif
Original file line number Diff line number Diff line change 99 <PackageReference Include =" Microsoft.DotNet.XUnitV3Extensions" />
1010 <PackageReference Include =" OpenTelemetry.Extensions.Hosting" />
1111 </ItemGroup >
12+
13+ <ItemGroup Condition =" '$(TargetFramework)' == 'net472' " >
14+ <PackageReference Include =" Microsoft.Bcl.Memory" />
15+ </ItemGroup >
1216
17+ <Import Project =" ../../src/Shared/FxPolyfills/FxPolyfills.targets" />
1318</Project >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments