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 9
9
<PackageReference Include =" Microsoft.DotNet.XUnitV3Extensions" />
10
10
<PackageReference Include =" OpenTelemetry.Extensions.Hosting" />
11
11
</ItemGroup >
12
+
13
+ <ItemGroup Condition =" '$(TargetFramework)' == 'net472' " >
14
+ <PackageReference Include =" Microsoft.Bcl.Memory" />
15
+ </ItemGroup >
12
16
17
+ <Import Project =" ../../src/Shared/FxPolyfills/FxPolyfills.targets" />
13
18
</Project >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments