Skip to content

Commit

Permalink
fix: Remove additional uses of relative paths (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfcampbell authored Jun 13, 2024
1 parent 802ddd1 commit 3863d36
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"mode": "auto",
"program": "${workspaceFolder}/post-processors/go/main.go",
"args": [
"${workspaceFolder}/../go-sdk"
"${workspaceFolder}/stage/go-sdk"
]
},
{
Expand All @@ -21,7 +21,7 @@
"mode": "auto",
"program": "${workspaceFolder}/post-processors/csharp/main.go",
"args": [
"${workspaceFolder}/../dotnet-sdk"
"${workspaceFolder}/stage/dotnet-sdk"
]
},
]
Expand Down
2 changes: 1 addition & 1 deletion post-processors/csharp/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func run() error {
}

initialDir, _ := os.Getwd() // Used for the dotnet add package command and traversal
packageInstallDir := fmt.Sprintf("%s/../dotnet-sdk/src", initialDir)
packageInstallDir := fmt.Sprintf("%s/stage/dotnet-sdk/src", initialDir)

cmd := exec.Command("kiota", "info", "-l", "CSharp", "--json")
cmd.Dir = dirPath
Expand Down
8 changes: 4 additions & 4 deletions stage/dotnet-sdk/src/GitHub.Octokit.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@

<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.9.0" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.2.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.3.0" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.8.4" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.4.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.1.6" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.2.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.1.4" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.1.5" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.1.5" />
Expand Down

0 comments on commit 3863d36

Please sign in to comment.