|
@@ -0,0 +1,19 @@
|
|
|
+<Project Sdk="Microsoft.NET.Sdk">
|
|
|
+
|
|
|
+ <PropertyGroup>
|
|
|
+ <TargetFramework>netcoreapp1.0</TargetFramework>
|
|
|
+ <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
+ <AssemblyName>Worker</AssemblyName>
|
|
|
+ <OutputType>Exe</OutputType>
|
|
|
+ <PackageId>Worker</PackageId>
|
|
|
+ <ServerGarbageCollection>true</ServerGarbageCollection>
|
|
|
+ <RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
|
|
|
+ </PropertyGroup>
|
|
|
+
|
|
|
+ <ItemGroup>
|
|
|
+ <PackageReference Include="StackExchange.Redis" Version="1.1.604-alpha" />
|
|
|
+ <PackageReference Include="Npgsql" Version="3.1.3" />
|
|
|
+ <PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
|
|
+ </ItemGroup>
|
|
|
+
|
|
|
+</Project>
|