Skip to content

Commit 958c193

Browse files
committed
Add project and NuGet configuration files for orchestration versioning sample
1 parent 2fceb9c commit 958c193

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>net6.0</TargetFramework>
4+
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
5+
</PropertyGroup>
6+
<ItemGroup>
7+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="3.5.1-anatolib-ver.8" />
8+
<PackageReference Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version="4.0.1" />
9+
</ItemGroup>
10+
</Project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
5+
<clear />
6+
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
7+
<add key="local-durable-extension" value="Q:\Projects\Durable\Versioning\powershell\azure-functions-durable-extension\src\WebJobs.Extensions.DurableTask\bin\Debug" />
8+
</packageSources>
9+
</configuration>

0 commit comments

Comments
 (0)