This repository was archived by the owner on Apr 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +19
-19
lines changed
Filter options
Expand file tree Collapse file tree 7 files changed +19
-19
lines changed
Original file line number Diff line number Diff line change 2
2
"version" : 1 ,
3
3
"isRoot" : true ,
4
4
"tools" : {
5
- "paket" : {
6
- "version" : " 7.2.1" ,
7
- "commands" : [
8
- " paket"
9
- ]
10
- },
11
5
"nbgv" : {
12
6
"version" : " 3.6.133" ,
13
7
"commands" : [
Original file line number Diff line number Diff line change @@ -3,11 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
3
3
# Visual Studio Version 17
4
4
VisualStudioVersion = 17.0.31903.59
5
5
MinimumVisualStudioVersion = 10.0.40219.1
6
- Project ("{2150E333-8FDC-42A3-9474-1A3956D46DE8}" ) = ".paket" , ".paket" , "{4E5F8510-A34C-43C6-A259-9F5EA8D1EB82}"
7
- Project Section (SolutionItems ) = preProject
8
- paket .dependencies = paket .dependencies
9
- EndProject Section
10
- EndProject
11
6
Project ("{2150E333-8FDC-42A3-9474-1A3956D46DE8}" ) = "tests" , "tests" , "{79BB339D-C2F7-4350-832B-3D9EAC46D5F3}"
12
7
EndProject
13
8
Project ("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}" ) = "Fargo.Test" , "tests\Fargo.Test\Fargo.Test.fsproj" , "{F0DB8FF7-FB68-4400-AF04-1B18E2548BEB}"
Original file line number Diff line number Diff line change 2
2
3
3
dotnet tool restore
4
4
dotnet build - c Release
5
- dotnet paket pack bin/ nuget
5
+ dotnet pack - c Release -- no - build - o bin/ nuget
Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<TargetFramework >netstandard2.0</TargetFramework >
5
5
<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 >
6
14
</PropertyGroup >
7
15
<ItemGroup >
8
16
<Compile Include =" Console.fs" />
12
20
<Compile Include =" Fargo.fs" />
13
21
</ItemGroup >
14
22
<ItemGroup >
15
- <None Include =" paket.references" />
16
- <None Include =" paket.template" />
23
+ <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1" PrivateAssets =" All" />
17
24
</ItemGroup >
18
- <Import Project =" ..\..\.paket\Paket.Restore.targets" />
19
25
</Project >
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 12
12
<Compile Include =" Completion.fs" />
13
13
<Compile Include =" AllAtOnce.fs" />
14
14
</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 >
15
24
<ItemGroup >
16
25
<ProjectReference Include =" ..\..\src\Fargo\Fargo.fsproj" />
17
26
</ItemGroup >
18
- <Import Project =" ..\..\.paket\Paket.Restore.targets" />
19
27
</Project >
You can’t perform that action at this time.
0 commit comments