Skip to content

Commit

Permalink
Updated target to netstandard1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Feb 12, 2019
1 parent 603a5f3 commit dfa33ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
8 changes: 1 addition & 7 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,9 @@ Task("Copy-Files")
{
var mapping = new Dictionary<String, String>
{
{ "net46", "net46" },
{ "netstandard2.0", "netstandard2.0" }
{ "netstandard1.3", "netstandard1.3" }
};
if (!isRunningOnWindows)
{
mapping.Remove("net46");
}
foreach (var item in mapping)
{
var targetDir = nugetRoot + Directory("lib") + Directory(item.Key);
Expand Down
3 changes: 1 addition & 2 deletions src/AngleSharp.Xml/AngleSharp.Xml.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
<PropertyGroup>
<AssemblyName>AngleSharp.Xml</AssemblyName>
<RootNamespace>AngleSharp.Xml</RootNamespace>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard1.3</TargetFrameworks>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AngleSharp" Version="0.11.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.0" />
</ItemGroup>

<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
Expand Down

0 comments on commit dfa33ec

Please sign in to comment.