-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathDurableTask.Samples.csproj
More file actions
37 lines (32 loc) · 1.23 KB
/
Copy pathDurableTask.Samples.csproj
File metadata and controls
37 lines (32 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),DurableTask.sln))\tools\DurableTask.props" />
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" />
<PackageReference Include="EnterpriseLibrary.SemanticLogging" />
<PackageReference Include="ncrontab" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\DurableTask.AzureStorage\DurableTask.AzureStorage.csproj" />
<ProjectReference Include="..\..\src\DurableTask.Core\DurableTask.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Configuration" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Update="Greetings\GetUserName.cs" />
<Compile Update="Greetings\GetUserName.Designer.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="SumOfSquares\BagofNumbers.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>