Skip to content

Commit daaf7c0

Browse files
committed
- v10.0.9
1 parent a7755f2 commit daaf7c0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Shuttle.Core.Reflection/.build/package.nuspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<licenseUrl>https://github.com/shuttle/Shuttle.Core.Reflection/raw/master/LICENSE</licenseUrl>
1010
<projectUrl>https://github.com/shuttle/Shuttle.Core.Reflection</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/Shuttle/Shuttle.Core.Reflection/master/.media/logo.png</iconUrl>
12+
<repository type="git" url="https://github.com/Shuttle/Shuttle.Core.Reflection.git" />
1213
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1314
<description>Reflection infrastructure components.</description>
1415
<releaseNotes />

Shuttle.Core.Reflection/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
[assembly: AssemblyTitle(".NET Standard 2.0")]
3434
#endif
3535

36-
[assembly: AssemblyVersion("10.0.8.0")]
36+
[assembly: AssemblyVersion("10.0.9.0")]
3737
[assembly: AssemblyCopyright("Copyright © Eben Roux 2017")]
3838
[assembly: AssemblyProduct("Shuttle.Core.Reflection")]
3939
[assembly: AssemblyCompany("Shuttle")]
4040
[assembly: AssemblyConfiguration("Release")]
41-
[assembly: AssemblyInformationalVersion("10.0.8")]
41+
[assembly: AssemblyInformationalVersion("10.0.9")]
4242
[assembly: ComVisible(false)]

Shuttle.Core.Reflection/ReflectionService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Text.RegularExpressions;
77
using Shuttle.Core.Contract;
88
using Shuttle.Core.Logging;
9-
#if (NETCOREAPP2_0 || NETSTANDARD2_0)
9+
#if (NETCOREAPP2_0 || NETCOREAPP2_1 || NETSTANDARD2_0)
1010
using Microsoft.DotNet.PlatformAbstractions;
1111
using Microsoft.Extensions.DependencyModel;
1212
#endif
@@ -220,7 +220,7 @@ var assembly in
220220

221221
public IEnumerable<Assembly> GetRuntimeAssemblies()
222222
{
223-
#if (!NETCOREAPP2_0 && !NETSTANDARD2_0)
223+
#if (!NETCOREAPP2_0 && !NETCOREAPP2_1 && !NETSTANDARD2_0)
224224
return AppDomain.CurrentDomain.GetAssemblies();
225225
#else
226226
var result = new List<Assembly>();

0 commit comments

Comments
 (0)