forked from Raiffeisen-DGTL/ViennaNET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViennaNET.WebApi.csproj
38 lines (31 loc) · 1.42 KB
/
ViennaNET.WebApi.csproj
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
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Bin</OutputPath>
<DocumentationFile>..\Bin\ViennaNET.WebApi.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Bin</OutputPath>
<DocumentationFile>..\Bin\ViennaNET.WebApi.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="App.Metrics.AspNetCore.Mvc" Version="3.2.0" />
<PackageReference Include="App.Metrics.Formatters.Prometheus" Version="3.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ViennaNET.WebApi.Abstractions\ViennaNET.WebApi.Abstractions.csproj" />
<ProjectReference Include="..\ViennaNET.Logging\ViennaNET.Logging.csproj" />
<ProjectReference Include="..\ViennaNET.Security\ViennaNET.Security.csproj" />
<ProjectReference Include="..\ViennaNET.Utils\ViennaNET.Utils.csproj" />
</ItemGroup>
</Project>