Last active
November 12, 2020 10:42
-
-
Save screamingworld/7ccb3f1e94aaba420ee2a4287205d556 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>netcoreapp3.1</TargetFramework> | |
<AssemblyName>Notifier.WebApi</AssemblyName> | |
<RootNamespace>Notifier.WebApi</RootNamespace> | |
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> | |
<OutputType>Exe</OutputType> | |
<UserSecretsId>notifier-webapi-6fd34aeb-1b78-4492-86dd-a5aa00ce38cd</UserSecretsId> | |
</PropertyGroup> | |
<ItemGroup> | |
<Content Include="appsettings.json"> | |
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |
</Content> | |
</ItemGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.Azure.EventHubs" Version="4.3.1" /> | |
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.9" /> | |
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="5.0.0" /> | |
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" /> | |
</ItemGroup> | |
<ItemGroup> | |
<ProjectReference Include="..\..\Common\Notifier.Common\Notifier.Common.csproj" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment