Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit 320256d

Browse files
Use nuget instead of paket
1 parent c72f691 commit 320256d

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

.config/dotnet-tools.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
"version": 1,
33
"isRoot": true,
44
"tools": {
5-
"paket": {
6-
"version": "7.2.1",
7-
"commands": [
8-
"paket"
9-
]
10-
},
115
"nbgv": {
126
"version": "3.6.133",
137
"commands": [

Fargo.sln

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{4E5F8510-A34C-43C6-A259-9F5EA8D1EB82}"
7-
ProjectSection(SolutionItems) = preProject
8-
paket.dependencies = paket.dependencies
9-
EndProjectSection
10-
EndProject
116
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{79BB339D-C2F7-4350-832B-3D9EAC46D5F3}"
127
EndProject
138
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Fargo.Test", "tests\Fargo.Test\Fargo.Test.fsproj", "{F0DB8FF7-FB68-4400-AF04-1B18E2548BEB}"

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
dotnet tool restore
44
dotnet build -c Release
5-
dotnet paket pack bin/nuget
5+
dotnet pack -c Release --no-build -o bin/nuget

src/Fargo/Fargo.fsproj

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>A functional argument parser with built in completion.</Description>
6+
<PackageId>Fargo.CmdLine</PackageId>
7+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
8+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
9+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
10+
<PackageProjectUrl>https://github.com/thinkbeforecoding/Fargo</PackageProjectUrl>
11+
<Copyright>Copyright (c) thinkbeforecoding 2023</Copyright>
12+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13+
<Authors>thinkbeforecoding, jeremie chassaing</Authors>
614
</PropertyGroup>
715
<ItemGroup>
816
<Compile Include="Console.fs" />
@@ -12,8 +20,6 @@
1220
<Compile Include="Fargo.fs" />
1321
</ItemGroup>
1422
<ItemGroup>
15-
<None Include="paket.references" />
16-
<None Include="paket.template" />
23+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
1724
</ItemGroup>
18-
<Import Project="..\..\.paket\Paket.Restore.targets" />
1925
</Project>

src/Fargo/paket.references

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/Fargo/paket.template

Lines changed: 0 additions & 2 deletions
This file was deleted.

tests/Fargo.Test/Fargo.Test.fsproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,16 @@
1212
<Compile Include="Completion.fs" />
1313
<Compile Include="AllAtOnce.fs" />
1414
</ItemGroup>
15+
<ItemGroup>
16+
<PackageReference Include="DEdge.Diffract" Version="0.2.0" />
17+
<PackageReference Include="FsCheck.Xunit" Version="2.16.6" />
18+
<PackageReference Include="xunit" Version="2.5.0" />
19+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
20+
<PrivateAssets>all</PrivateAssets>
21+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
22+
</PackageReference>
23+
</ItemGroup>
1524
<ItemGroup>
1625
<ProjectReference Include="..\..\src\Fargo\Fargo.fsproj" />
1726
</ItemGroup>
18-
<Import Project="..\..\.paket\Paket.Restore.targets" />
1927
</Project>

0 commit comments

Comments
 (0)