forked from Azure/Commercial-Marketplace-SaaS-Accelerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServices.csproj
28 lines (23 loc) · 1.08 KB
/
Services.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Authors>Microsoft.Marketplace</Authors>
<Company>Microsoft</Company>
<Product>Marketplace.SaaS.Accelerator</Product>
<AssemblyName>Services</AssemblyName>
<RootNamespace>Marketplace.SaaS.Accelerator.Services</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.11.4" />
<PackageReference Include="Marketplace.SaaS.Client" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.1.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
<PackageReference Include="System.Linq.Async" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DataAccess\DataAccess.csproj" />
</ItemGroup>
</Project>