-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathFunctions.csproj
More file actions
51 lines (48 loc) · 2.34 KB
/
Copy pathFunctions.csproj
File metadata and controls
51 lines (48 loc) · 2.34 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackOnBuild>true</PackOnBuild>
<PackageId>Supabase.Functions</PackageId>
<RootNamespace>Supabase.Functions</RootNamespace>
<AssemblyName>Supabase.Functions</AssemblyName>
<Authors>Joseph Schultz <joseph@acupofjose.com></Authors>
<Copyright>MIT</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Owners>Joseph Schultz <joseph@acupofjose.com></Owners>
<Summary>A C# client for Supabase Functions</Summary>
<Title>Function</Title>
<Description>A C# client for Supabase Functions</Description>
<PackageIconUrl>https://avatars.githubusercontent.com/u/54469796?s=200&v=4</PackageIconUrl>
<PackageProjectUrl>https://github.com/supabase-community/functions-csharp</PackageProjectUrl>
<PackageTags>supabase, functions</PackageTags>
<!-- x-release-please-start-version -->
<PackageVersion>2.1.0</PackageVersion>
<ReleaseVersion>2.1.0</ReleaseVersion>
<!-- x-release-please-end -->
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/supabase-community/functions-csharp</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>enable</Nullable>
<LangVersion>8.0</LangVersion>
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Version)' == '' ">
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.1.0</VersionPrefix> <!-- x-release-please-version -->
<VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix>
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Supabase.Core" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\.github\icon.png" Pack="true" Link="icon.png" PackagePath="\" />
<None Include="..\README.md" Pack="true" Link="README.md" PackagePath="\" />
</ItemGroup>
</Project>