-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFMdotNet__DataAPI.csproj
More file actions
27 lines (22 loc) · 1002 Bytes
/
FMdotNet__DataAPI.csproj
File metadata and controls
27 lines (22 loc) · 1002 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>18.0.0</Version>
<AssemblyVersion>18.0.0.0</AssemblyVersion>
<FileVersion>18.0.0.0</FileVersion>
<DependsOnNETStandard>true</DependsOnNETStandard>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\FMdotNet__DataAPI.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>false</Optimize>
<DocumentationFile>bin\Debug\netstandard2.0\FMdotNet__DataAPI.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="RestSharp" Version="106.6.9" />
</ItemGroup>
</Project>