Skip to content

Commit

Permalink
Version 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbah committed Mar 10, 2021
1 parent ef6ecb5 commit a2ce3d9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
15 changes: 9 additions & 6 deletions DMISharp/DMISharp.csproj
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net5.0;netstandard2.0;net461;net472</TargetFrameworks>
<Authors>Bobbahbrown</Authors>
<Company>MelonMesa</Company>
<Description>Library for handling BYOND DMI files.</Description>
<Copyright>Copyright (c) 2021 MelonMesa</Copyright>
<PackageProjectUrl>https://melonmesa.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/bobbahbrown/DMISharp</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<AssemblyVersion>1.6.0.0</AssemblyVersion>
<Version>1.6.0</Version>
<AssemblyVersion>1.6.1.0</AssemblyVersion>
<Version>1.6.1</Version>
<PackageIcon>dmisharp.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageTags>DMI BYOND SpaceStation13</PackageTags>
<PackageReleaseNotes>- Added support for .NET Standard 2.0</PackageReleaseNotes>
<FileVersion>1.6.0.0</FileVersion>
<PackageReleaseNotes>
- Added support for .NET Framework 4.7.2 and .NET Framework 4.6.1
- Updated ImageSharp to 1.0.3
</PackageReleaseNotes>
<FileVersion>1.6.1.0</FileVersion>
<LangVersion>8.0</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MetadataExtractor" Version="2.4.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.3" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta11" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion DMISharp/Metadata/DMIMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private static string[] GetDMIData(IEnumerable<MetadataExtractor.Directory> dire
}


#if NETSTANDARD
#if NETSTANDARD || NET472 || NET461
metaDesc = metaDesc.Substring(metaDesc.IndexOf('#'));
#else
metaDesc = metaDesc[metaDesc.IndexOf('#')..];
Expand Down
6 changes: 3 additions & 3 deletions DMISharpTests/DMISharpTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<TargetFrameworks>net5.0;net472</TargetFrameworks>
<TargetFrameworks>net5.0;net462;net472</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -13,8 +13,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit a2ce3d9

Please sign in to comment.