-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'paket_pack_by_tfm' of https://github.com/enricosada/Paket
- Loading branch information
Showing
13 changed files
with
212 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...ontests/scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Common/Class1.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using System; | ||
|
||
namespace MyProj.Common | ||
{ | ||
public class Class1 | ||
{ | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...narios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Common/MyProj.Common.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks> | ||
</PropertyGroup> | ||
<Import Project="..\.paket\Paket.Restore.targets" /> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
.../scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Common/paket.references
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FSharp.Core | ||
Suave framework: net45 | ||
Argu framework: netstandard2.0 |
7 changes: 7 additions & 0 deletions
7
...ts/scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Common/paket.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type project | ||
dependencies | ||
framework: net45 | ||
framework: netstandard2.0 | ||
files | ||
bin/Release/net45/MyProj.Common.dll ==> lib/net45 | ||
bin/Release/netstandard2.0/MyProj.Common.dll ==> lib/netstandard2.0 |
8 changes: 8 additions & 0 deletions
8
...tiontests/scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Main/Class1.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using System; | ||
|
||
namespace MyProj.Main | ||
{ | ||
public class Class1 | ||
{ | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
.../scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Main/MyProj.Main.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\MyProj.Common\MyProj.Common.csproj" /> | ||
</ItemGroup> | ||
<Import Project="..\.paket\Paket.Restore.targets" /> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
...ts/scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Main/paket.references
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FSharp.Core | ||
Suave | ||
Argu |
7 changes: 7 additions & 0 deletions
7
...ests/scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/MyProj.Main/paket.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type project | ||
dependencies | ||
framework: net45 | ||
framework: netstandard2.0 | ||
files | ||
bin/Release/net45/MyProj.Main.dll ==> lib/net45 | ||
bin/Release/netstandard2.0/MyProj.Main.dll ==> lib/netstandard2.0 |
6 changes: 6 additions & 0 deletions
6
...grationtests/scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/paket.dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
source https://www.nuget.org/api/v2 | ||
framework: net45, netstandard2.0 | ||
|
||
nuget FSharp.Core >= 3.1.2.5 lowest_matching: true | ||
nuget Suave 1.1.3 framework: net45 | ||
nuget Argu 5.2.0 framework: netstandard2.0 |
26 changes: 26 additions & 0 deletions
26
integrationtests/scenarios/i003166-pack-multitarget-with-p2p-by-tfm/before/paket.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
RESTRICTION: || (== net45) (== netstandard2.0) | ||
NUGET | ||
remote: https://www.nuget.org/api/v2 | ||
Argu (5.2) - restriction: == netstandard2.0 | ||
FSharp.Core (>= 4.3.2) - restriction: == netstandard2.0 | ||
System.Configuration.ConfigurationManager (>= 4.4) - restriction: == netstandard2.0 | ||
FSharp.Core (4.3.2) | ||
Suave (1.1.3) - restriction: == net45 | ||
FSharp.Core (>= 3.1.2.5) | ||
System.Buffers (4.5) - restriction: == netstandard2.0 | ||
System.Configuration.ConfigurationManager (4.5) - restriction: == netstandard2.0 | ||
System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (&& (== net45) (>= netstandard2.0)) (== netstandard2.0) | ||
System.Security.Permissions (>= 4.5) - restriction: || (&& (== net45) (>= monoandroid)) (&& (== net45) (>= monotouch)) (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (&& (== net45) (>= xamarintvos)) (&& (== net45) (>= xamarinwatchos)) (== netstandard2.0) | ||
System.Memory (4.5.2) - restriction: == netstandard2.0 | ||
System.Buffers (>= 4.4) | ||
System.Numerics.Vectors (>= 4.4) - restriction: || (&& (== net45) (>= net461)) (== netstandard2.0) | ||
System.Runtime.CompilerServices.Unsafe (>= 4.5.2) | ||
System.Numerics.Vectors (4.5) - restriction: == netstandard2.0 | ||
System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: == netstandard2.0 | ||
System.Security.AccessControl (4.5) - restriction: == netstandard2.0 | ||
System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netcoreapp2.0)) (&& (== net45) (>= netstandard2.0)) (== netstandard2.0) | ||
System.Security.Cryptography.ProtectedData (4.5) - restriction: == netstandard2.0 | ||
System.Memory (>= 4.5) - restriction: || (&& (== net45) (>= netstandard2.0)) (== netstandard2.0) | ||
System.Security.Permissions (4.5) - restriction: == netstandard2.0 | ||
System.Security.AccessControl (>= 4.5) - restriction: || (&& (== net45) (>= net461)) (&& (== net45) (>= netstandard2.0)) (== netstandard2.0) | ||
System.Security.Principal.Windows (4.5.1) - restriction: == netstandard2.0 |
Oops, something went wrong.