Remove obsolete HttpContextExtensions reference and update NuGet URL

Removed the redundant Compile Remove directive for HttpContextExtensions in the project file. Also updated the NuGet feed URL for Webhooks Core Preview in the configuration file to reflect the correct source.
This commit is contained in:
Sipke Schoorstra 2024-11-12 11:04:51 +01:00
parent f626bff2d5
commit 1c6271b6a5
2 changed files with 20 additions and 24 deletions

View file

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
<add key="Elsa 3 Preview" value="https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json" />
<add key="Webhooks Core Preview" value="https://f.feedz.io/personal/webhooks-core/nuget/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="NuGet official package source">
<package pattern="*" />
</packageSource>
<packageSource key="Elsa 3 Preview">
<package pattern="Elsa" />
<package pattern="Elsa.*" />
<package pattern="Elsa.Studio.*" />
</packageSource>
<packageSource key="Webhooks Core Preview">
<package pattern="WebhooksCore" />
<package pattern="WebhooksCore.*" />
</packageSource>
</packageSourceMapping>
<packageSources>
<clear />
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
<add key="Elsa 3 Preview" value="https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json" />
<add key="Webhooks Core Preview" value="https://f.feedz.io/sfmskywalker/webhooks-core/nuget/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="NuGet official package source">
<package pattern="*" />
</packageSource>
<packageSource key="Elsa 3 Preview">
<package pattern="Elsa" />
<package pattern="Elsa.*" />
<package pattern="Elsa.Studio.*" />
</packageSource>
<packageSource key="Webhooks Core Preview">
<package pattern="WebhooksCore" />
<package pattern="WebhooksCore.*" />
</packageSource>
</packageSourceMapping>
</configuration>

View file

@ -17,8 +17,4 @@
<ProjectReference Include="..\Elsa.Workflows.Runtime\Elsa.Workflows.Runtime.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Extensions\HttpContextExtensions.cs" />
</ItemGroup>
</Project>