Skip to content

Commit 0f85880

Browse files
committed
update dotnet version
1 parent 0d64f62 commit 0f85880

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

NuGet.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
66
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
77
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
8-
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
9-
<add key="CoreWCF_Dev" value="https://pkgs.dev.azure.com/dotnet/CoreWCF/_packaging/CoreWCF/nuget/v3/index.json" />
108
</packageSources>
119
<disabledPackageSources />
1210
</configuration>

eng/SendToHelix.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<Target Name="InstallDotNet">
2121
<ItemGroup>
22-
<AdditionalDotNetPackage Include="8.0.5">
22+
<AdditionalDotNetPackage Include="8.0.8">
2323
<PackageType>aspnetcore-runtime</PackageType>
2424
<Channel>Current</Channel>
2525
</AdditionalDotNetPackage>

src/System.Private.ServiceModel/tools/CertificateGenerator/CertificateGeneratorLibrary/CertificateHelper.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ public static class CurrentOperatingSystem
3333
/// Returns true if current OS matches OSPlatform
3434
/// </summary>
3535
/// <param name="os">OS Platform to check for</param>
36-
public static bool IsOSPlatform(OSPlatform osPlatform) =>
37-
RuntimeInformation.IsOSPlatform(osPlatform);
36+
public static bool IsOSPlatform(OSPlatform osPlatform) => RuntimeInformation.IsOSPlatform(osPlatform);
3837
}
3938

4039
public static X509Store GetX509Store(StoreName storeName, StoreLocation storeLocation)

src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/CoreWCF/BasicHttpsBinding.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// See the LICENSE file in the project root for more information.
44

55
#if NET
6-
76
using CoreWCF;
87
using CoreWCF.Channels;
98

src/System.Private.ServiceModel/tools/IISHostedWcfService/App_code/CoreWCF/NetHttpsBinding.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// See the LICENSE file in the project root for more information.
44

55
#if NET
6-
76
using CoreWCF;
87
using CoreWCF.Channels;
98

0 commit comments

Comments
 (0)