Skip to content

Commit

Permalink
added sourcemapping to nuget.config
Browse files Browse the repository at this point in the history
change LangVersion from 13.0 to 13
  • Loading branch information
Insire committed Dec 6, 2024
1 parent 503309d commit 975e610
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>13.0</LangVersion>
<LangVersion>13</LangVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
17 changes: 14 additions & 3 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="AvaloniaCI" value="https://www.myget.org/F/avalonia-ci/api/v2" />
</packageSources>
<packageSources>
<clear />
<add key="AvaloniaCI" value="https://www.myget.org/F/avalonia-ci/api/v2" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="AvaloniaCI">
<package pattern="Avalonia*" />
</packageSource>
</packageSourceMapping>
</configuration>

0 comments on commit 975e610

Please sign in to comment.