Files
server/src/EventsProcessor/EventsProcessor.csproj

23 lines
748 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk;Microsoft.NET.Sdk.Publish">
2017-12-08 15:02:54 -05:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2017-12-26 22:34:51 -05:00
<TargetFramework>net471</TargetFramework>
2017-12-08 15:02:54 -05:00
<RootNamespace>Bit.EventsProcessor</RootNamespace>
</PropertyGroup>
<ItemGroup>
2018-02-21 22:31:33 -05:00
<PackageReference Include="Microsoft.Azure.WebJobs" Version="2.1.0" />
2018-03-28 10:00:20 -04:00
<PackageReference Include="WindowsAzure.Storage" Version="9.1.0" />
2017-12-08 15:02:54 -05:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
2017-12-08 15:02:54 -05:00
</ItemGroup>
2017-12-08 16:03:20 -05:00
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
2017-12-08 16:03:20 -05:00
</ItemGroup>
2017-12-27 09:09:25 -05:00
<ItemGroup>
<None Update="Settings.job">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2017-12-08 15:02:54 -05:00
</Project>