From e415b71790f45edbe51e99859d7f50fbeff53d1c Mon Sep 17 00:00:00 2001 From: Steffen Forkmann Date: Sun, 24 Jan 2016 17:17:19 +0100 Subject: [PATCH] More integration tests for #1427 --- .../Paket.IntegrationTests/InstallSpecs.fs | 35 +++++++++ .../before/MyClassLibrary/MyClassLibrary.sln | 27 +++++++ .../MyClassLibrary/MyClassLibrary/Class1.cs | 12 ++++ .../MyClassLibrary/FodyWeavers.xml | 5 ++ .../FodyWeavers.xml.install.xdt | 4 ++ .../FodyWeavers.xml.uninstall.xdt | 4 ++ .../MyClassLibrary.csprojtemplate | 62 ++++++++++++++++ .../MyClassLibrary/Properties/AssemblyInfo.cs | 36 ++++++++++ .../MyClassLibrary/paket.references | 1 + .../before/paket.dependencies | 4 ++ .../before/MyClassLibrary/MyClassLibrary.sln | 27 +++++++ .../MyClassLibrary/MyClassLibrary/Class1.cs | 12 ++++ .../MyClassLibrary/FodyWeavers.xml | 5 ++ .../FodyWeavers.xml.install.xdt | 4 ++ .../FodyWeavers.xml.uninstall.xdt | 4 ++ .../MyClassLibrary.csprojtemplate | 71 +++++++++++++++++++ .../MyClassLibrary/Properties/AssemblyInfo.cs | 36 ++++++++++ .../MyClassLibrary/paket.references | 1 + .../before/paket.dependencies | 4 ++ src/Paket/Paket.fsproj | 2 +- 20 files changed, 355 insertions(+), 1 deletion(-) create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary.sln create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Class1.cs create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs create mode 100644 integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/paket.references create mode 100644 integrationtests/scenarios/i001427-content-none/before/paket.dependencies create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary.sln create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Class1.cs create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs create mode 100644 integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/paket.references create mode 100644 integrationtests/scenarios/i001427-content-true/before/paket.dependencies diff --git a/integrationtests/Paket.IntegrationTests/InstallSpecs.fs b/integrationtests/Paket.IntegrationTests/InstallSpecs.fs index 80e2059c76..c91e239405 100644 --- a/integrationtests/Paket.IntegrationTests/InstallSpecs.fs +++ b/integrationtests/Paket.IntegrationTests/InstallSpecs.fs @@ -71,6 +71,7 @@ let ``#1427 install content once from dependencies file``() = let s1 = File.ReadAllText oldFile |> normalizeLineEndings let s2 = File.ReadAllText newFile |> normalizeLineEndings s1 |> shouldEqual s2 + s1.Contains "FodyWeavers.xml" |> shouldEqual true let newWeavers = Path.Combine(scenarioTempPath "i001427-content-once","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") let oldWeavers = Path.Combine(originalScenarioPath "i001427-content-once","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") @@ -86,6 +87,7 @@ let ``#1427 install content once from references file``() = let s1 = File.ReadAllText oldFile |> normalizeLineEndings let s2 = File.ReadAllText newFile |> normalizeLineEndings s1 |> shouldEqual s2 + s1.Contains "FodyWeavers.xml" |> shouldEqual true let newWeavers = Path.Combine(scenarioTempPath "i001427-ref-content-once","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") let oldWeavers = Path.Combine(originalScenarioPath "i001427-ref-content-once","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") @@ -93,6 +95,39 @@ let ``#1427 install content once from references file``() = let s2 = File.ReadAllText newWeavers |> normalizeLineEndings s1 |> shouldEqual s2 +[] +let ``#1427 install content``() = + let newLockFile = install "i001427-content-true" + let newFile = Path.Combine(scenarioTempPath "i001427-content-true","MyClassLibrary","MyClassLibrary","MyClassLibrary.csproj") + let oldFile = Path.Combine(originalScenarioPath "i001427-content-true","MyClassLibrary","MyClassLibrary","MyClassLibrary.csprojtemplate") + let s1 = File.ReadAllText oldFile |> normalizeLineEndings + let s2 = File.ReadAllText newFile |> normalizeLineEndings + s1 |> shouldEqual s2 + s1.Contains "FodyWeavers.xml" |> shouldEqual true + + let newWeavers = Path.Combine(scenarioTempPath "i001427-content-true","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") + let oldWeavers = Path.Combine(originalScenarioPath "i001427-content-true","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") + let s1 = File.ReadAllText oldWeavers |> normalizeLineEndings + let s2 = File.ReadAllText newWeavers |> normalizeLineEndings + s1 |> shouldNotEqual s2 + +[] +let ``#1427 won't install content when content:none``() = + let newLockFile = install "i001427-content-none" + let newFile = Path.Combine(scenarioTempPath "i001427-content-none","MyClassLibrary","MyClassLibrary","MyClassLibrary.csproj") + let oldFile = Path.Combine(originalScenarioPath "i001427-content-none","MyClassLibrary","MyClassLibrary","MyClassLibrary.csprojtemplate") + let s1 = File.ReadAllText oldFile |> normalizeLineEndings + let s2 = File.ReadAllText newFile |> normalizeLineEndings + s1 |> shouldEqual s2 + s1.Contains "FodyWeavers.xml" |> shouldEqual false + + let newWeavers = Path.Combine(scenarioTempPath "i001427-content-none","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") + let oldWeavers = Path.Combine(originalScenarioPath "i001427-content-none","MyClassLibrary","MyClassLibrary","FodyWeavers.xml") + let s1 = File.ReadAllText oldWeavers |> normalizeLineEndings + let s2 = File.ReadAllText newWeavers |> normalizeLineEndings + s1 |> shouldEqual s2 // we don not touch it + + [] let ``#1334 without download fail``() = install "i001334-download-fail" |> ignore diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary.sln b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary.sln new file mode 100644 index 0000000000..d319700402 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{673951A0-5216-4FBD-BA08-7FA057D5CC0D}" + ProjectSection(SolutionItems) = preProject + ..\paket.dependencies = ..\paket.dependencies + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyClassLibrary", "MyClassLibrary\MyClassLibrary.csproj", "{CD678800-8DFC-4BB1-911A-7234F492EA29}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Class1.cs b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Class1.cs new file mode 100644 index 0000000000..2580be441d --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MyClassLibrary +{ + public class Class1 + { + } +} diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml new file mode 100644 index 0000000000..215e5d5999 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt new file mode 100644 index 0000000000..4bca747d7d --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt new file mode 100644 index 0000000000..ccd42a7d19 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate new file mode 100644 index 0000000000..6f6ab11aa9 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate @@ -0,0 +1,62 @@ + + + + + Debug + AnyCPU + {CD678800-8DFC-4BB1-911A-7234F492EA29} + Library + Properties + MyClassLibrary + MyClassLibrary + v4.5.2 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + <__paket__Fody_targets>portable-net+sl+win+wpa+wp\Fody + + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..7920bce104 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MyClassLibrary")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MyClassLibrary")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("cd678800-8dfc-4bb1-911a-7234f492ea29")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/paket.references b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/paket.references new file mode 100644 index 0000000000..7fa9ee3a56 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/MyClassLibrary/MyClassLibrary/paket.references @@ -0,0 +1 @@ +Costura.Fody \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-none/before/paket.dependencies b/integrationtests/scenarios/i001427-content-none/before/paket.dependencies new file mode 100644 index 0000000000..1e0adf6e94 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-none/before/paket.dependencies @@ -0,0 +1,4 @@ +source https://www.nuget.org/api/v2/ +framework >= net45 + +nuget Costura.Fody ~> 1.3.3.0 content:none \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary.sln b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary.sln new file mode 100644 index 0000000000..d319700402 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{673951A0-5216-4FBD-BA08-7FA057D5CC0D}" + ProjectSection(SolutionItems) = preProject + ..\paket.dependencies = ..\paket.dependencies + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyClassLibrary", "MyClassLibrary\MyClassLibrary.csproj", "{CD678800-8DFC-4BB1-911A-7234F492EA29}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD678800-8DFC-4BB1-911A-7234F492EA29}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Class1.cs b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Class1.cs new file mode 100644 index 0000000000..2580be441d --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MyClassLibrary +{ + public class Class1 + { + } +} diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml new file mode 100644 index 0000000000..215e5d5999 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt new file mode 100644 index 0000000000..4bca747d7d --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.install.xdt @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt new file mode 100644 index 0000000000..ccd42a7d19 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/FodyWeavers.xml.uninstall.xdt @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate new file mode 100644 index 0000000000..0c90600a2e --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/MyClassLibrary.csprojtemplate @@ -0,0 +1,71 @@ + + + + + Debug + AnyCPU + {CD678800-8DFC-4BB1-911A-7234F492EA29} + Library + Properties + MyClassLibrary + MyClassLibrary + v4.5.2 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + True + + + True + + + True + + + + + + + + + + + + + + + + + + + + <__paket__Fody_targets>portable-net+sl+win+wpa+wp\Fody + + + + + \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..7920bce104 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MyClassLibrary")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MyClassLibrary")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("cd678800-8dfc-4bb1-911a-7234f492ea29")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/paket.references b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/paket.references new file mode 100644 index 0000000000..7fa9ee3a56 --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/MyClassLibrary/MyClassLibrary/paket.references @@ -0,0 +1 @@ +Costura.Fody \ No newline at end of file diff --git a/integrationtests/scenarios/i001427-content-true/before/paket.dependencies b/integrationtests/scenarios/i001427-content-true/before/paket.dependencies new file mode 100644 index 0000000000..35c092c72c --- /dev/null +++ b/integrationtests/scenarios/i001427-content-true/before/paket.dependencies @@ -0,0 +1,4 @@ +source https://www.nuget.org/api/v2/ +framework >= net45 + +nuget Costura.Fody ~> 1.3.3.0 \ No newline at end of file diff --git a/src/Paket/Paket.fsproj b/src/Paket/Paket.fsproj index 8f517502e6..8150481a74 100644 --- a/src/Paket/Paket.fsproj +++ b/src/Paket/Paket.fsproj @@ -48,7 +48,7 @@ d:\code\paketrepro D:\code\Paket\integrationtests\scenarios\i001270-net461\temp C:\code\restore - D:\code\Paket\integrationtests\scenarios\i001427-content-once\temp + D:\code\Paket\integrationtests\scenarios\i001427-content-none\temp pdbonly