Skip to content

Commit 6e7ff66

Browse files
authored
Merge pull request #365 from LoopPerfect/fix/ssh
remove ssh prefix and update nuget.config
2 parents 98daf11 + 184d78c commit 6e7ff66

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

buckaroo-cli/buckaroo-cli.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
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>

buckaroo-cli/nuget.config

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
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>

buckaroo/PackageLocation.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,21 @@ module PackageLocation =
4545
then
4646
"https://github.com/" + x.Owner + "/" + x.Project + ".git"
4747
else
48-
"ssh://[email protected]:" + x.Owner + "/" + x.Project + ".git"
48+
"[email protected]:" + 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://[email protected]:" + x.Owner + "/" + x.Project + ".git"
55+
"[email protected]:" + 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://[email protected]:" + (x.Groups |> String.concat "/") + "/" + x.Project + ".git"
62+
"[email protected]:" + (x.Groups |> String.concat "/") + "/" + x.Project + ".git"
6363

6464
let versionSetFromLocation location =
6565
match location with

0 commit comments

Comments
 (0)