File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 </ItemGroup >
1515
1616 <ItemGroup >
17- <PackageReference Include =" Microsoft.DotNet.ILCompiler" Version =" 1.0.0-alpha- *" />
17+ <PackageReference Include =" Microsoft.DotNet.ILCompiler" Version =" 1.0.0-*" />
1818 <PackageReference Include =" LibGit2Sharp" Version =" 0.25.2" />
1919 <ProjectReference Include =" ../buckaroo/buckaroo.fsproj" />
2020 </ItemGroup >
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<configuration >
33 <packageSources >
4- <!-- To inherit the global NuGet package sources remove the <clear/> line below -->
54 <clear />
6- <add key =" dotnet-core" value =" https://dotnet.myget.org/F/ dotnet-core/api/v3 /index.json" />
5+ <add key =" dotnet-core" value =" https://dotnetfeed.blob.core.windows.net/ dotnet-core/index.json" />
76 <add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" protocolVersion =" 3" />
87 </packageSources >
9- </configuration >
8+ </configuration >
Original file line number Diff line number Diff line change @@ -45,21 +45,21 @@ module PackageLocation =
4545 then
4646 " https://github.com/" + x.Owner + " /" + x.Project + " .git"
4747 else
48- " ssh:// git@github.com:" + x.Owner + " /" + x.Project + " .git"
48+ " git@github.com:" + x.Owner + " /" + x.Project + " .git"
4949
5050 let bitBucketUrl ( x : AdhocPackageIdentifier ) =
5151 if Environment.GetEnvironmentVariable " BUCKAROO_BITBUCKET_SSH" |> isNull
5252 then
5353 " https://bitbucket.org/" + x.Owner + " /" + x.Project + " .git"
5454 else
55- " ssh:// git@bitbucket.org:" + x.Owner + " /" + x.Project + " .git"
55+ " git@bitbucket.org:" + x.Owner + " /" + x.Project + " .git"
5656
5757 let gitLabUrl ( x : GitLabPackageIdentifier ) =
5858 if Environment.GetEnvironmentVariable " BUCKAROO_GITLAB_SSH" |> isNull
5959 then
6060 " https://gitlab.com/" + ( x.Groups |> String.concat " /" ) + " /" + x.Project + " .git"
6161 else
62- " ssh:// git@gitlab.com:" + ( x.Groups |> String.concat " /" ) + " /" + x.Project + " .git"
62+ " git@gitlab.com:" + ( x.Groups |> String.concat " /" ) + " /" + x.Project + " .git"
6363
6464 let versionSetFromLocation location =
6565 match location with
You can’t perform that action at this time.
0 commit comments