-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathFirebase.Auth.csproj
More file actions
24 lines (21 loc) · 1018 Bytes
/
Firebase.Auth.csproj
File metadata and controls
24 lines (21 loc) · 1018 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>Firebase.Auth.Rest</PackageId>
<PackageVersion>1.2.0</PackageVersion>
<Authors>Chris Paynter</Authors>
<Description>A .NET API client for Firebase Rest Authentication API that follows Google's API spec as precisely as possible.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>First release</PackageReleaseNotes>
<Copyright></Copyright>
<PackageTags>firebase auth</PackageTags>
<Version>1.2.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.1\Firebase.Auth.Rest.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>