mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 13:35:10 -05:00
23 lines
748 B
XML
23 lines
748 B
XML
<Project Sdk="Microsoft.NET.Sdk;Microsoft.NET.Sdk.Publish">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net471</TargetFramework>
|
|
<RootNamespace>Bit.EventsProcessor</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Azure.WebJobs" Version="2.2.0" />
|
|
<PackageReference Include="WindowsAzure.Storage" Version="9.1.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Configuration" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="Settings.job">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project> |