Skip to content

Commit

Permalink
Expose both package sources to msbuild too
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Jan 27, 2024
1 parent e8d9507 commit 33ca72b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<RestoreSources>https://api.nuget.org/v3/index.json;https://pkg.kzu.dev/index.json;</RestoreSources>
<RestoreSources>https://api.nuget.org/v3/index.json;https://pkg.kzu.dev/index.json</RestoreSources>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="AutoMapper" Version="12.0.0" />
Expand Down
4 changes: 2 additions & 2 deletions src/nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="kzu.dev" value="https://pkg.kzu.dev/index.json" />
<add key="kzu" value="https://pkg.kzu.dev/index.json" />
</packageSources>

<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
<package pattern="Devlooped.*" />
</packageSource>
<packageSource key="kzu.dev">
<packageSource key="kzu">
<package pattern="Devlooped.*" />
</packageSource>
</packageSourceMapping>
Expand Down

0 comments on commit 33ca72b

Please sign in to comment.