-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLatchSDK.csproj
executable file
·49 lines (44 loc) · 2.1 KB
/
LatchSDK.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net40;net45</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json">
<Version>6.0.11</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net40' Or '$(TargetFramework)'=='net45'">
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
</ItemGroup>
<PropertyGroup>
<Title>Latch SDK</Title>
<Authors>Telefónica Innovación Digital</Authors>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<PackageTags>latch security protection 2factor authentication two factor telefonica</PackageTags>
<PackageVersion>2.0.0</PackageVersion>
<Product>Latch SDK</Product>
<Description>Latch is a service that lets you add an extra level of security to your online services to help prevent any unauthorized use.</Description>
<PackageId>Latch.SDK</PackageId>
<Company>Telefonica Digital</Company>
<Copyright>Copyright © 2024</Copyright>
<Version>2.0.0</Version>
<AssemblyVersion>2.0.0</AssemblyVersion>
<IncludeSourceRevisionInInformationalVersion>False</IncludeSourceRevisionInInformationalVersion>
<RepositoryUrl>https://github.com/Telefonica/latch-sdk-dotnet</RepositoryUrl>
<PackageProjectUrl>https://latch.tu.com</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="images\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>