Browse Source

Include vsix with plain nuget.config files

net11
Christoph Wille 14 hours ago
parent
commit
2ae1ec6091
  1. 2
      .github/workflows/build-ilspy.yml
  2. 7
      ILSpy.AddIn.VS2022/NuGet.config
  3. 7
      ILSpy.AddIn/NuGet.config

2
.github/workflows/build-ilspy.yml

@ -21,7 +21,7 @@ jobs: @@ -21,7 +21,7 @@ jobs:
env:
BuildPlatform: Any CPU
StagingDirectory: buildartifacts
BuildAndPublishVsix: false # temp disable due to usage of transport feed for net11
BuildAndPublishVsix: true # temp disable due to usage of transport feed for net11
steps:
- run: mkdir -p $env:StagingDirectory

7
ILSpy.AddIn.VS2022/NuGet.config

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>

7
ILSpy.AddIn/NuGet.config

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
Loading…
Cancel
Save