-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecureNative.SDK.csproj
More file actions
55 lines (53 loc) · 2.49 KB
/
SecureNative.SDK.csproj
File metadata and controls
55 lines (53 loc) · 2.49 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>SecureNative.SDK</RootNamespace>
<AssemblyName>SecureNative.SDK</AssemblyName>
<ProjectGuid>{F7AAD3F9-6BFA-4C68-AA26-90D5DA609012}</ProjectGuid>
<PackageVersion>2.0.6</PackageVersion>
<PackageName></PackageName>
<Authors>SecureNative</Authors>
<Owners>SecureNative</Owners>
<PackageProjectUrl>https://github.com/securenative/securenative-dotnet</PackageProjectUrl>
<Summary>SecureNative.SDK</Summary>
<Description>SecureNative.SDK</Description>
<Copyright>SecureNative</Copyright>
<PackageTags>SecureNative, SDK</PackageTags>
<Title>SecureNative .Net SDK</Title>
<NeutralLanguage>en</NeutralLanguage>
<ReleaseVersion>2.0.6</ReleaseVersion>
<PackageId>SecureNative</PackageId>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>1</WarningLevel>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType></DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
<PackageReference Include="System.Net.Primitives" Version="4.3.1" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="NLog" Version="4.7.5" />
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
<PackageReference Include="Vse.Web.Serialization.ControlledSerializationJsonConverter" Version="1.0.4" />
<PackageReference Include="XPlat.ApplicationModel" Version="1.7.20109.1" />
</ItemGroup>
<ItemGroup>
<Compile Remove="SecureNative.Tests\obj\Debug\netcoreapp3.1\.NETCoreApp,Version=v3.1.AssemblyAttributes.cs" />
</ItemGroup>
</Project>