Skip to content

Commit acb8273

Browse files
MMaguetaMarcos Magueta
authored andcommitted
chore: add paket
1 parent 64defd5 commit acb8273

19 files changed

+122
-53
lines changed

.config/dotnet-tools.json

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,11 @@
22
"version": 1,
33
"isRoot": true,
44
"tools": {
5-
"fake-cli" : {
6-
"version": "5.20.3",
5+
"paket": {
6+
"version": "6.0.6",
77
"commands": [
8-
"fake"
9-
]
10-
},
11-
"fable": {
12-
"version": "3.0.0-nagareyama-rc-004",
13-
"commands": [
14-
"fable"
8+
"paket"
159
]
1610
}
1711
}
18-
}
19-
12+
}

.paket/Paket.Restore.targets

Lines changed: 71 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
This value should match the version in the props generated by paket
160160
If they differ, this means we need to do a restore in order to ensure correct dependencies
161161
-->
162-
<PropertyGroup Condition="'$(PaketPropsVersion)' != '5.185.3' ">
162+
<PropertyGroup Condition="'$(PaketPropsVersion)' != '6.0.0' ">
163163
<PaketRestoreRequired>true</PaketRestoreRequired>
164164
</PropertyGroup>
165165

@@ -236,13 +236,16 @@
236236
<PackageName>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0])</PackageName>
237237
<PackageVersion>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1])</PackageVersion>
238238
<AllPrivateAssets>$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4])</AllPrivateAssets>
239-
<CopyLocal Condition="'%(PaketReferencesFileLinesInfo.Splits)' == '6'">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5])</CopyLocal>
239+
<CopyLocal Condition="%(PaketReferencesFileLinesInfo.Splits) &gt;= 6">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5])</CopyLocal>
240+
<OmitContent Condition="%(PaketReferencesFileLinesInfo.Splits) &gt;= 7">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[6])</OmitContent>
241+
<ImportTargets Condition="%(PaketReferencesFileLinesInfo.Splits) &gt;= 8">$([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[7])</ImportTargets>
240242
</PaketReferencesFileLinesInfo>
241243
<PackageReference Include="%(PaketReferencesFileLinesInfo.PackageName)">
242244
<Version>%(PaketReferencesFileLinesInfo.PackageVersion)</Version>
243245
<PrivateAssets Condition=" ('%(PaketReferencesFileLinesInfo.AllPrivateAssets)' == 'true') Or ('$(PackAsTool)' == 'true') ">All</PrivateAssets>
244-
<ExcludeAssets Condition=" '%(PaketReferencesFileLinesInfo.Splits)' == '6' And %(PaketReferencesFileLinesInfo.CopyLocal) == 'false'">runtime</ExcludeAssets>
245-
<ExcludeAssets Condition=" '%(PaketReferencesFileLinesInfo.Splits)' != '6' And %(PaketReferencesFileLinesInfo.AllPrivateAssets) == 'exclude'">runtime</ExcludeAssets>
246+
<ExcludeAssets Condition=" %(PaketReferencesFileLinesInfo.CopyLocal) == 'false' or %(PaketReferencesFileLinesInfo.AllPrivateAssets) == 'exclude'">runtime</ExcludeAssets>
247+
<ExcludeAssets Condition=" %(PaketReferencesFileLinesInfo.OmitContent) == 'true'">$(ExcludeAssets);contentFiles</ExcludeAssets>
248+
<ExcludeAssets Condition=" %(PaketReferencesFileLinesInfo.ImportTargets) == 'false'">$(ExcludeAssets);build;buildMultitargeting;buildTransitive</ExcludeAssets>
246249
<Publish Condition=" '$(PackAsTool)' == 'true' ">true</Publish>
247250
<AllowExplicitVersion>true</AllowExplicitVersion>
248251
</PackageReference>
@@ -289,14 +292,16 @@
289292
<PropertyGroup>
290293
<PaketProjectFile>$(MSBuildProjectDirectory)/$(MSBuildProjectFile)</PaketProjectFile>
291294
<ContinuePackingAfterGeneratingNuspec>true</ContinuePackingAfterGeneratingNuspec>
295+
<UseMSBuild16_10_Pack>false</UseMSBuild16_10_Pack>
296+
<UseMSBuild16_10_Pack Condition=" '@(MSBuildMajorVersion)' >= '16' AND '@(MSBuildMinorVersion)' > '10' ">true</UseMSBuild16_10_Pack>
292297
<UseMSBuild16_0_Pack>false</UseMSBuild16_0_Pack>
293-
<UseMSBuild16_0_Pack Condition=" '@(MSBuildMajorVersion)' >= '16' ">true</UseMSBuild16_0_Pack>
298+
<UseMSBuild16_0_Pack Condition=" '@(MSBuildMajorVersion)' >= '16' AND (! $(UseMSBuild16_10_Pack)) ">true</UseMSBuild16_0_Pack>
294299
<UseMSBuild15_9_Pack>false</UseMSBuild15_9_Pack>
295300
<UseMSBuild15_9_Pack Condition=" '@(MSBuildMajorVersion)' == '15' AND '@(MSBuildMinorVersion)' > '8' ">true</UseMSBuild15_9_Pack>
296301
<UseMSBuild15_8_Pack>false</UseMSBuild15_8_Pack>
297-
<UseMSBuild15_8_Pack Condition=" '$(NuGetToolVersion)' != '4.0.0' AND (! $(UseMSBuild15_9_Pack)) AND (! $(UseMSBuild16_0_Pack)) ">true</UseMSBuild15_8_Pack>
302+
<UseMSBuild15_8_Pack Condition=" '$(NuGetToolVersion)' != '4.0.0' AND (! $(UseMSBuild15_9_Pack)) AND (! $(UseMSBuild16_0_Pack)) AND (! $(UseMSBuild16_10_Pack)) ">true</UseMSBuild15_8_Pack>
298303
<UseNuGet4_Pack>false</UseNuGet4_Pack>
299-
<UseNuGet4_Pack Condition=" (! $(UseMSBuild15_8_Pack)) AND (! $(UseMSBuild15_9_Pack)) AND (! $(UseMSBuild16_0_Pack)) ">true</UseNuGet4_Pack>
304+
<UseNuGet4_Pack Condition=" (! $(UseMSBuild15_8_Pack)) AND (! $(UseMSBuild15_9_Pack)) AND (! $(UseMSBuild16_0_Pack)) AND (! $(UseMSBuild16_10_Pack)) ">true</UseNuGet4_Pack>
300305
<AdjustedNuspecOutputPath>$(PaketIntermediateOutputPath)\$(Configuration)</AdjustedNuspecOutputPath>
301306
<AdjustedNuspecOutputPath Condition="@(_NuspecFilesNewLocation) == ''">$(PaketIntermediateOutputPath)</AdjustedNuspecOutputPath>
302307
</PropertyGroup>
@@ -314,6 +319,55 @@
314319
</ConvertToAbsolutePath>
315320

316321
<!-- Call Pack -->
322+
<PackTask Condition="$(UseMSBuild16_10_Pack)"
323+
PackItem="$(PackProjectInputFile)"
324+
PackageFiles="@(_PackageFiles)"
325+
PackageFilesToExclude="@(_PackageFilesToExclude)"
326+
PackageVersion="$(PackageVersion)"
327+
PackageId="$(PackageId)"
328+
Title="$(Title)"
329+
Authors="$(Authors)"
330+
Description="$(Description)"
331+
Copyright="$(Copyright)"
332+
RequireLicenseAcceptance="$(PackageRequireLicenseAcceptance)"
333+
LicenseUrl="$(PackageLicenseUrl)"
334+
ProjectUrl="$(PackageProjectUrl)"
335+
IconUrl="$(PackageIconUrl)"
336+
ReleaseNotes="$(PackageReleaseNotes)"
337+
Tags="$(PackageTags)"
338+
DevelopmentDependency="$(DevelopmentDependency)"
339+
BuildOutputInPackage="@(_BuildOutputInPackage)"
340+
TargetPathsToSymbols="@(_TargetPathsToSymbols)"
341+
SymbolPackageFormat="$(SymbolPackageFormat)"
342+
TargetFrameworks="@(_TargetFrameworks)"
343+
AssemblyName="$(AssemblyName)"
344+
PackageOutputPath="$(PackageOutputAbsolutePath)"
345+
IncludeSymbols="$(IncludeSymbols)"
346+
IncludeSource="$(IncludeSource)"
347+
PackageTypes="$(PackageType)"
348+
IsTool="$(IsTool)"
349+
RepositoryUrl="$(RepositoryUrl)"
350+
RepositoryType="$(RepositoryType)"
351+
SourceFiles="@(_SourceFiles->Distinct())"
352+
NoPackageAnalysis="$(NoPackageAnalysis)"
353+
MinClientVersion="$(MinClientVersion)"
354+
Serviceable="$(Serviceable)"
355+
FrameworkAssemblyReferences="@(_FrameworkAssemblyReferences)"
356+
ContinuePackingAfterGeneratingNuspec="$(ContinuePackingAfterGeneratingNuspec)"
357+
NuspecOutputPath="$(AdjustedNuspecOutputPath)"
358+
IncludeBuildOutput="$(IncludeBuildOutput)"
359+
BuildOutputFolders="$(BuildOutputTargetFolder)"
360+
ContentTargetFolders="$(ContentTargetFolders)"
361+
RestoreOutputPath="$(RestoreOutputAbsolutePath)"
362+
NuspecFile="$(NuspecFileAbsolutePath)"
363+
NuspecBasePath="$(NuspecBasePath)"
364+
NuspecProperties="$(NuspecProperties)"
365+
PackageLicenseFile="$(PackageLicenseFile)"
366+
PackageLicenseExpression="$(PackageLicenseExpression)"
367+
PackageLicenseExpressionVersion="$(PackageLicenseExpressionVersion)"
368+
Readme="$(PackageReadmeFile)"
369+
NoDefaultExcludes="$(NoDefaultExcludes)"/>
370+
317371
<PackTask Condition="$(UseMSBuild16_0_Pack)"
318372
PackItem="$(PackProjectInputFile)"
319373
PackageFiles="@(_PackageFiles)"
@@ -343,6 +397,8 @@
343397
IsTool="$(IsTool)"
344398
RepositoryUrl="$(RepositoryUrl)"
345399
RepositoryType="$(RepositoryType)"
400+
RepositoryBranch="$(RepositoryBranch)"
401+
RepositoryCommit="$(RepositoryCommit)"
346402
SourceFiles="@(_SourceFiles->Distinct())"
347403
NoPackageAnalysis="$(NoPackageAnalysis)"
348404
MinClientVersion="$(MinClientVersion)"
@@ -359,7 +415,8 @@
359415
NuspecProperties="$(NuspecProperties)"
360416
PackageLicenseFile="$(PackageLicenseFile)"
361417
PackageLicenseExpression="$(PackageLicenseExpression)"
362-
PackageLicenseExpressionVersion="$(PackageLicenseExpressionVersion)" />
418+
PackageLicenseExpressionVersion="$(PackageLicenseExpressionVersion)"
419+
NoDefaultExcludes="$(NoDefaultExcludes)" />
363420

364421
<PackTask Condition="$(UseMSBuild15_9_Pack)"
365422
PackItem="$(PackProjectInputFile)"
@@ -390,6 +447,8 @@
390447
IsTool="$(IsTool)"
391448
RepositoryUrl="$(RepositoryUrl)"
392449
RepositoryType="$(RepositoryType)"
450+
RepositoryBranch="$(RepositoryBranch)"
451+
RepositoryCommit="$(RepositoryCommit)"
393452
SourceFiles="@(_SourceFiles->Distinct())"
394453
NoPackageAnalysis="$(NoPackageAnalysis)"
395454
MinClientVersion="$(MinClientVersion)"
@@ -433,6 +492,8 @@
433492
IsTool="$(IsTool)"
434493
RepositoryUrl="$(RepositoryUrl)"
435494
RepositoryType="$(RepositoryType)"
495+
RepositoryBranch="$(RepositoryBranch)"
496+
RepositoryCommit="$(RepositoryCommit)"
436497
SourceFiles="@(_SourceFiles->Distinct())"
437498
NoPackageAnalysis="$(NoPackageAnalysis)"
438499
MinClientVersion="$(MinClientVersion)"
@@ -475,6 +536,8 @@
475536
IsTool="$(IsTool)"
476537
RepositoryUrl="$(RepositoryUrl)"
477538
RepositoryType="$(RepositoryType)"
539+
RepositoryBranch="$(RepositoryBranch)"
540+
RepositoryCommit="$(RepositoryCommit)"
478541
SourceFiles="@(_SourceFiles->Distinct())"
479542
NoPackageAnalysis="$(NoPackageAnalysis)"
480543
MinClientVersion="$(MinClientVersion)"

Fuchu.CSharpTests/Fuchu.CSharpTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
<!-- <ItemGroup> -->
1515
<!-- <PackageReference Include="FSharp.Core" Version="4.6.2" /> -->
1616
<!-- </ItemGroup> -->
17-
<Import Project="..\..\.paket\Paket.Restore.targets" />
17+
<Import Project="..\.paket\Paket.Restore.targets" />
1818
</Project>

Fuchu.FableTests/Fuchu.FableTests.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<DefineConstants Condition=" '$(Configuration)' == 'Fable'">$(DefineConstants);FABLE_COMPILER</DefineConstants>
1414
</PropertyGroup>
1515
<ItemGroup>
16+
<None Include="paket.references" />
1617
<Compile Include="Prelude.fs" />
1718
<Compile Include="Tests.fs" />
1819
<Compile Include="Main.fs" />
@@ -26,5 +27,5 @@
2627
<!-- <PackageReference Include="Fable.Promise" Version="2.1.0" /> -->
2728
<!-- <PackageReference Include="Fable.Fetch" Version="2.2.0" /> -->
2829
<!-- </ItemGroup> -->
29-
<Import Project="..\..\.paket\Paket.Restore.targets" />
30+
<Import Project="..\.paket\Paket.Restore.targets" />
3031
</Project>

Fuchu.FableTests/paket.references

Whitespace-only changes.

Fuchu.FsCheck/FsCheck.fs

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -16,43 +16,44 @@ module FuchuFsCheck =
1616
| :? IgnoreException as e -> Some e
1717
| _ -> None
1818

19-
let internal wrapRunner (r : IRunner) =
19+
let internal wrapRunner (r: IRunner) =
2020
{ new IRunner with
2121
member x.OnStartFixture t = r.OnStartFixture t
22-
member x.OnArguments (ntest, args, every) = r.OnArguments (ntest, args, every)
22+
member x.OnArguments(ntest, args, every) = r.OnArguments(ntest, args, every)
2323
member x.OnShrink(args, everyShrink) = r.OnShrink(args, everyShrink)
24-
member x.OnFinished(name,testResult) =
24+
25+
member x.OnFinished(name, testResult) =
2526
let msg = onFinishedToString name testResult
27+
2628
match testResult with
2729
| FsCheck.TestResult.True _ -> ()
28-
| FsCheck.TestResult.False (_,_,_, Outcome.Exception (Ignored e),_) -> raise e
29-
| _ -> failtest msg
30-
}
30+
| FsCheck.TestResult.False (_, _, _, Outcome.Exception (Ignored e), _) -> raise e
31+
| _ -> failtest msg }
3132

32-
let internal config =
33+
let internal config =
3334
{ Config.Default with
34-
Runner = wrapRunner Config.Default.Runner }
35+
Runner = wrapRunner Config.Default.Runner }
3536

36-
let testPropertyWithConfig (config: Config) name property =
37+
let testPropertyWithConfig (config: Config) name property =
3738
let config =
3839
{ config with
39-
Runner = wrapRunner config.Runner }
40-
testCase name <|
41-
fun _ ->
42-
ignore Runner.init.Value
43-
FsCheck.Check.One(name, config, property)
44-
40+
Runner = wrapRunner config.Runner }
41+
42+
testCase name
43+
<| fun _ ->
44+
ignore Runner.init.Value
45+
FsCheck.Check.One(name, config, property)
46+
4547
let testProperty name = testPropertyWithConfig config name
4648

4749
type FsCheck =
48-
static member Property(name, property: Func<_,bool>) =
49-
testProperty name property.Invoke
50+
static member Property(name, property: Func<_, bool>) = testProperty name property.Invoke
5051

51-
static member Property(name, property: Func<_,_,bool>) =
52-
testProperty name (fun a b -> property.Invoke(a,b))
52+
static member Property(name, property: Func<_, _, bool>) =
53+
testProperty name (fun a b -> property.Invoke(a, b))
5354

54-
static member Property(name, property: Func<_,_,_,bool>) =
55-
testProperty name (fun a b c -> property.Invoke(a,b,c))
55+
static member Property(name, property: Func<_, _, _, bool>) =
56+
testProperty name (fun a b c -> property.Invoke(a, b, c))
5657

57-
static member Property(name, property: Func<_,_,_,_,bool>) =
58-
testProperty name (fun a b c d -> property.Invoke(a,b,c,d))
58+
static member Property(name, property: Func<_, _, _, _, bool>) =
59+
testProperty name (fun a b c d -> property.Invoke(a, b, c, d))

Fuchu.FsCheck/Fuchu.FsCheck.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<Version Condition=" '$(VersionSuffix)' == '' ">$(VersionPrefix)</Version>
1414
</PropertyGroup>
1515
<ItemGroup>
16+
<None Include="paket.references" />
1617
<Compile Include="AssemblyInfo.fs" />
1718
<Compile Include="FsCheck.fs" />
1819
</ItemGroup>
@@ -23,5 +24,5 @@
2324
<!-- <PackageReference Update="FSharp.Core" Version="4.6.2" /> -->
2425
<!-- <PackageReference Include="FsCheck" Version="2.14.0" /> -->
2526
<!-- </ItemGroup> -->
26-
<Import Project="..\..\.paket\Paket.Restore.targets" />
27+
<Import Project="..\.paket\Paket.Restore.targets" />
2728
</Project>

Fuchu.FsCheck/paket.references

Whitespace-only changes.

Fuchu.MbUnit/Fuchu.MbUnit.fsproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Library</OutputType>
55
<RootNamespace>Fuchu.MbUnit</RootNamespace>
66
<AssemblyName>Fuchu.MbUnit</AssemblyName>
7-
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
7+
<TargetFrameworks>net5.0</TargetFrameworks>
88
<Name>Fuchu.MbUnit</Name>
99
<Authors>Mauricio Scheffer</Authors>
1010
<Description>Converts Fuchu tests to MbUnit tests</Description>
@@ -13,6 +13,7 @@
1313
<Version Condition=" '$(VersionSuffix)' == '' ">$(VersionPrefix)</Version>
1414
</PropertyGroup>
1515
<ItemGroup>
16+
<None Include="paket.references" />
1617
<Compile Include="AssemblyInfo.fs" />
1718
<Compile Include="FuchuTestToMbUnit.fs" />
1819
</ItemGroup>
@@ -25,4 +26,5 @@
2526
<ItemGroup>
2627
<PackageReference Include="Gallio_MbUnit" Version="3.4.14.0" />
2728
</ItemGroup>
28-
</Project>
29+
<Import Project="..\.paket\Paket.Restore.targets" />
30+
</Project>

Fuchu.MbUnit/paket.references

Whitespace-only changes.

Fuchu.PerfUtil.Charting/Fuchu.PerfUtil.Charting.fsproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
<OutputType>Library</OutputType>
55
<RootNamespace>Fuchu.PerfUtil.Charting</RootNamespace>
66
<AssemblyName>Fuchu.PerfUtil.Charting</AssemblyName>
7-
<TargetFrameworks>net452</TargetFrameworks>
7+
<TargetFrameworks>net5.0</TargetFrameworks>
88
<Name>Fuchu.PerfUtil.Charting</Name>
99
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1010
</PropertyGroup>
1111
<ItemGroup>
12+
<None Include="paket.references" />
1213
<Compile Include="Charting.fs" />
1314
</ItemGroup>
1415
<ItemGroup>
@@ -27,4 +28,5 @@
2728
<ItemGroup>
2829
<PackageReference Include="FSharp.Charting" Version="2.1.0" />
2930
</ItemGroup>
30-
</Project>
31+
<Import Project="..\.paket\Paket.Restore.targets" />
32+
</Project>

Fuchu.PerfUtil/Fuchu.PerfUtil.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
</PropertyGroup>
1717
<ItemGroup>
18+
<None Include="paket.references" />
1819
<Compile Include="AssemblyInfo.fs" />
1920
<Compile Include="PerfUtil.fs" />
2021
</ItemGroup>
@@ -25,4 +26,5 @@
2526
<!-- <PackageReference Update="FSharp.Core" Version="4.6.2" /> -->
2627
<!-- <PackageReference Include="PerfUtil" Version="0.1.8" /> -->
2728
</ItemGroup>
29+
<Import Project="..\.paket\Paket.Restore.targets" />
2830
</Project>

Fuchu.PerfUtil/paket.references

Whitespace-only changes.

Fuchu.TeamCity/Fuchu.TeamCity.fsproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
<OutputType>Library</OutputType>
55
<RootNamespace>Fuchu.TeamCity</RootNamespace>
66
<AssemblyName>Fuchu.TeamCity</AssemblyName>
7-
<TargetFrameworks>net452</TargetFrameworks>
7+
<TargetFrameworks>net5.0</TargetFrameworks>
88
<Name>Fuchu.TeamCity</Name>
99
</PropertyGroup>
1010
<ItemGroup>
11+
<None Include="paket.references" />
1112
<Compile Include="Runner.fs" />
1213
</ItemGroup>
1314
<ItemGroup>
@@ -24,4 +25,5 @@
2425
<ItemGroup>
2526
<PackageReference Update="FSharp.Core" Version="4.6.2" />
2627
</ItemGroup>
27-
</Project>
28+
<Import Project="..\.paket\Paket.Restore.targets" />
29+
</Project>

Fuchu.TeamCity/paket.references

Whitespace-only changes.

Fuchu.Tests/Fuchu.Tests.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<DefineConstants Condition=" '$(Configuration)' == 'Fable'">$(DefineConstants);FABLE_COMPILER</DefineConstants>
1414
</PropertyGroup>
1515
<ItemGroup>
16+
<None Include="paket.references" />
1617
<Compile Include="Prelude.fs" />
1718
<Compile Include="NUnitTestTypes.fs" />
1819
<Compile Include="NUnitTests.fs" />
@@ -35,5 +36,5 @@
3536
<!-- <PackageReference Update="FSharp.Core" Version="4.6.2" /> -->
3637
<!-- <PackageReference Include="NUnit" Version="3.12.0" /> -->
3738
<!-- </ItemGroup> -->
38-
<Import Project="..\..\.paket\Paket.Restore.targets" />
39+
<Import Project="..\.paket\Paket.Restore.targets" />
3940
</Project>

Fuchu.Tests/paket.references

Whitespace-only changes.

Fuchu/Fuchu.fsproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
</PropertyGroup>
2020
<ItemGroup>
21+
<None Include="paket.references" />
2122
<Compile Include="Fuchu.fs" />
2223
<Compile Include="xUnitHelpers.fs" />
2324
<Compile Include="Fuchu.NUnit.fs" />
@@ -35,5 +36,5 @@
3536
<ItemGroup>
3637
<Content Include="*.fsproj; *.fs" PackagePath="fable/" />
3738
</ItemGroup>
38-
39+
<Import Project="..\.paket\Paket.Restore.targets" />
3940
</Project>

Fuchu/paket.references

Whitespace-only changes.

0 commit comments

Comments
 (0)