-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCamstarService.csproj
More file actions
34 lines (30 loc) · 1.06 KB
/
CamstarService.csproj
File metadata and controls
34 lines (30 loc) · 1.06 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.ServiceModel.Http" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Camstar.Constants">
<HintPath>dll\Camstar.Constants.dll</HintPath>
</Reference>
<Reference Include="Camstar.Exceptions">
<HintPath>dll\Camstar.Exceptions.dll</HintPath>
</Reference>
<Reference Include="Camstar.Util">
<HintPath>dll\Camstar.Util.dll</HintPath>
</Reference>
<Reference Include="Camstar.Utility">
<HintPath>dll\Camstar.Utility.dll</HintPath>
</Reference>
<Reference Include="InSiteXMLClient">
<HintPath>dll\InSiteXMLClient.dll</HintPath>
</Reference>
</ItemGroup>
</Project>