-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCognizant.Hackathon.RestClient.csproj
More file actions
87 lines (83 loc) · 3.71 KB
/
Cognizant.Hackathon.RestClient.csproj
File metadata and controls
87 lines (83 loc) · 3.71 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Globals">
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
<Configurations>Debug;Release;Ad-Hoc</Configurations>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
<IntermediateOutputPath>obj\AppStore</IntermediateOutputPath>
<DebugType></DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\AppStore</OutputPath>
<DefineConstants></DefineConstants>
<NoWarn></NoWarn>
<NoStdLib>false</NoStdLib>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'PlayStore|AnyCPU' ">
<IntermediateOutputPath>obj\Release\netstandard2.0</IntermediateOutputPath>
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\PlayStore\netstandard2.0</OutputPath>
<DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
<WarningLevel>4</WarningLevel>
<DocumentationFile></DocumentationFile>
<NoWarn>1701;1702</NoWarn>
<NoStdLib>true</NoStdLib>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhoneSimulator' ">
<IntermediateOutputPath>obj\iPhoneSimulator\Ad-Hoc</IntermediateOutputPath>
<DebugType></DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhoneSimulator\Ad-Hoc</OutputPath>
<DefineConstants></DefineConstants>
<NoWarn></NoWarn>
<NoStdLib>false</NoStdLib>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Android-PQA|AnyCPU' ">
<IntermediateOutputPath>obj\Release\netstandard2.0</IntermediateOutputPath>
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Android-PQA\netstandard2.0</OutputPath>
<DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
<WarningLevel>4</WarningLevel>
<DocumentationFile></DocumentationFile>
<NoWarn>1701;1702</NoWarn>
<NoStdLib>true</NoStdLib>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Android-PROD|AnyCPU' ">
<IntermediateOutputPath>obj\Release\netstandard2.0</IntermediateOutputPath>
<Optimize>true</Optimize>
<DefineConstants>TRACE;RELEASE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AdHoc-PQA|AnyCPU' ">
<IntermediateOutputPath>obj\AdHoc-PQA</IntermediateOutputPath>
<DebugType></DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\AdHoc-PQA</OutputPath>
<DefineConstants></DefineConstants>
<NoWarn></NoWarn>
<NoStdLib>false</NoStdLib>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AdHoc-PROD|AnyCPU' ">
<IntermediateOutputPath>obj\AdHoc-PROD</IntermediateOutputPath>
<DebugType></DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\AdHoc-PROD</OutputPath>
<DefineConstants></DefineConstants>
<NoWarn></NoWarn>
<NoStdLib>false</NoStdLib>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IdentityModel" Version="4.3.0" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
</Project>