Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Experiment] push cli into paket.core #3338

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
182 changes: 41 additions & 141 deletions integrationtests/Paket.IntegrationTests/Paket.IntegrationTests.fsproj

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion src/Paket.Core.preview3/Paket.Core.fsproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PaketCoreSourcesDir>..\Paket.Core</PaketCoreSourcesDir>
<DefineConstants>NO_BOOTSTRAPPER;NO_CONFIGURATIONMANAGER;CUSTOM_WEBPROXY;$(DefineConstants)</DefineConstants>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\paket-files\fsprojects\FSharp.TypeProviders.SDK\src\AssemblyReader.fs">
Expand Down Expand Up @@ -91,6 +92,8 @@
<Compile Include="$(PaketCoreSourcesDir)\Packaging\PackageMetaData.fs" />
<Compile Include="$(PaketCoreSourcesDir)\Packaging\PackageProcess.fs" />
<Compile Include="$(PaketCoreSourcesDir)\PublicAPI.fs" />
<Compile Include="$(PaketCoreSourcesDir)\CliCommands.fs" />
<Compile Include="$(PaketCoreSourcesDir)\CliRunner.fs" />
<Content Include="app.config" />
</ItemGroup>
<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/Paket.Core.preview3/paket.references
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Newtonsoft.Json
Argu
Mono.Cecil
Chessie
System.Security.Cryptography.ProtectedData
Expand Down
758 changes: 758 additions & 0 deletions src/Paket.Core/CliCommands.fs

Large diffs are not rendered by default.

899 changes: 899 additions & 0 deletions src/Paket.Core/CliRunner.fs

Large diffs are not rendered by default.

208 changes: 131 additions & 77 deletions src/Paket.Core/Paket.Core.fsproj

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/Paket.Core/paket.references
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Newtonsoft.Json
Argu
FSharp.Core
Mono.Cecil
Chessie
Expand Down
114 changes: 35 additions & 79 deletions src/Paket/Paket.fsproj

Large diffs are not rendered by default.

883 changes: 2 additions & 881 deletions src/Paket/Program.fs

Large diffs are not rendered by default.

168 changes: 34 additions & 134 deletions tests/Paket.Bootstrapper.Tests/Paket.Bootstrapper.Tests.csproj

Large diffs are not rendered by default.

182 changes: 41 additions & 141 deletions tests/Paket.Tests/Paket.Tests.fsproj

Large diffs are not rendered by default.