-
-
Notifications
You must be signed in to change notification settings - Fork 31
Paket to nuget #289
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
Merged
Merged
Paket to nuget #289
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1a90da6
Convert to nuget top and library
TheAngryByrd 32e418e
Console paket to nuget
TheAngryByrd de9047e
More paket cleanups
TheAngryByrd 97add98
CentralPackageTransitivePinningEnabled
TheAngryByrd 4bc4911
fixup rebase
TheAngryByrd 29c812d
Don't include package.lock.json
TheAngryByrd 4c87619
Fixup references
TheAngryByrd dc926e7
Remove unused paket.references and paket.dependencies files
TheAngryByrd bc664b0
Fix formatting of Microsoft.NET.Test.Sdk version in Directory.Package…
TheAngryByrd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| <!-- https://learn.microsoft.com/en-us/nuget/consume-packages/Central-Package-Management --> | ||
| <Project> | ||
| <PropertyGroup> | ||
| <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile> | ||
| <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
| <DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference> | ||
| </PropertyGroup> | ||
| <PropertyGroup> | ||
| <FakeVersion>6.1.3</FakeVersion> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
|
|
||
| <PackageVersion Include="FSharp.Core" Version="8.0.403" /> | ||
| <PackageVersion Include="Expecto" Version="10.2.2" /> | ||
| <PackageVersion Include="YoloDev.Expecto.TestSdk" Version="0.15.3" /> | ||
| <PackageVersion Include="Microsoft.NET.Test.Sdk" Version=" 17.13.0" /> | ||
| <PackageVersion Include="Packaging.Targets" Version="0.1.208" PrivateAssets="All" /> | ||
| <PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.0" PrivateAssets="All" /> | ||
| <PackageVersion Include="altcover" Version="8.2.825" /> | ||
|
|
||
| <PackageVersion Include="Fake.IO.FileSystem" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="Fake.Core.Target" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="Fake.Core.ReleaseNotes" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="FAKE.Core.Environment" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="Fake.DotNet.Cli" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="FAKE.Core.Process" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="Fake.DotNet.AssemblyInfoFile" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="Fake.Tools.Git" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="Fake.Api.GitHub" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="Fake.BuildServer.GitHubActions" Version="$(FakeVersion)" /> | ||
| <PackageVersion Include="MSBuild.StructuredLogger" Version="2.2.441" /> | ||
| <PackageVersion Include="Argu" Version="6.0" /> | ||
| </ItemGroup> | ||
| </Project> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <configuration> | ||
| <!-- `clear` ensures no additional sources are inherited from another config file. --> | ||
| <packageSources> | ||
| <clear /> | ||
| <!-- `key` can be any identifier for your source. --> | ||
| <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
| <!-- <add key="contoso.com" value="https://contoso.com/packages/" /> --> | ||
| </packageSources> | ||
|
|
||
| <!-- https://learn.microsoft.com/en-us/nuget/consume-packages/package-source-mapping --> | ||
| <!-- Define mappings by adding package patterns beneath the target source. --> | ||
| <packageSourceMapping> | ||
| <!-- key value for <packageSource> should match key values from <packageSources> element --> | ||
| <packageSource key="nuget.org"> | ||
| <package pattern="*" /> | ||
| </packageSource> | ||
| <!-- <packageSource key="contoso.com"> | ||
| <package pattern="Contoso.*" /> | ||
| <package pattern="NuGet.Common" /> | ||
| </packageSource> --> | ||
| </packageSourceMapping> | ||
| </configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,29 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <OutputType>Exe</OutputType> | ||
| <TargetFramework>net8.0</TargetFramework> | ||
| <WarnOn>3390;$(WarnOn)</WarnOn> | ||
| <IsPackable>false</IsPackable> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <Compile Include="Changelog.fs" /> | ||
| <Compile Include="build.fs" /> | ||
| </ItemGroup> | ||
| <Import Project="..\.paket\Paket.Restore.targets" /> | ||
| <PropertyGroup> | ||
| <OutputType>Exe</OutputType> | ||
| <TargetFramework>net8.0</TargetFramework> | ||
| <WarnOn>3390;$(WarnOn)</WarnOn> | ||
| <IsPackable>false</IsPackable> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <Compile Include="Changelog.fs" /> | ||
| <Compile Include="build.fs" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="Fake.IO.FileSystem" /> | ||
| <PackageReference Include="Fake.Core.Target" /> | ||
| <PackageReference Include="Fake.Core.ReleaseNotes" /> | ||
| <PackageReference Include="FAKE.Core.Environment" /> | ||
| <PackageReference Include="Fake.DotNet.Cli" /> | ||
| <PackageReference Include="FAKE.Core.Process" /> | ||
| <PackageReference Include="Fake.DotNet.AssemblyInfoFile" /> | ||
| <PackageReference Include="Fake.Tools.Git" /> | ||
| <PackageReference Include="Fake.Api.GitHub" /> | ||
| <PackageReference Include="Fake.BuildServer.GitHubActions" /> | ||
| <PackageReference Include="MSBuild.StructuredLogger" /> | ||
| <PackageReference Include="Argu" /> | ||
| </ItemGroup> | ||
|
|
||
| </Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.