-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathFirebase.Auth.csproj
More file actions
22 lines (19 loc) · 939 Bytes
/
Firebase.Auth.csproj
File metadata and controls
22 lines (19 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Firebase.Auth.Rest</PackageId>
<PackageVersion>1.1.1-beta</PackageVersion>
<Authors>Chris Paynter, Florian Kriegl</Authors>
<Description>A .NET API client for Firebase Rest Authentication API that follows Google's API spec as precisely as possible.</Description>
<PackageReleaseNotes>First release</PackageReleaseNotes>
<PackageTags>firebase auth</PackageTags>
<Version>1.1.0-beta</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\Firebase.Auth.Rest.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
</Project>