|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - <PropertyGroup> |
3 |
| - <TargetFramework>netstandard2.0</TargetFramework> |
4 |
| - <PackOnBuild>true</PackOnBuild> |
5 |
| - <PackageId>Supabase.Functions</PackageId> |
6 |
| - <RootNamespace>Supabase.Functions</RootNamespace> |
7 |
| - <AssemblyName>Supabase.Functions</AssemblyName> |
8 |
| - <Authors>Joseph Schultz <joseph@acupofjose.com></Authors> |
9 |
| - <Copyright>MIT</Copyright> |
10 |
| - <NeutralLanguage>en</NeutralLanguage> |
11 |
| - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
12 |
| - <Owners>Joseph Schultz <joseph@acupofjose.com></Owners> |
13 |
| - <Summary>A C# client for Supabase Functions</Summary> |
14 |
| - <Title>Function</Title> |
15 |
| - <Description>A C# client for Supabase Functions</Description> |
16 |
| - <PackageIconUrl>https://avatars.githubusercontent.com/u/54469796?s=200&v=4</PackageIconUrl> |
17 |
| - <PackageProjectUrl>https://github.com/supabase-community/functions-csharp</PackageProjectUrl> |
18 |
| - <PackageTags>supabase, functions</PackageTags> |
19 |
| - <!-- x-release-please-start-version --> |
20 |
| - <PackageVersion>2.0.0</PackageVersion> |
21 |
| - <ReleaseVersion>2.0.0</ReleaseVersion> |
22 |
| - <!-- x-release-please-end --> |
23 |
| - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
24 |
| - <PackageIcon>icon.png</PackageIcon> |
25 |
| - <PackageReadmeFile>README.md</PackageReadmeFile> |
26 |
| - <RepositoryUrl>https://github.com/supabase-community/functions-csharp</RepositoryUrl> |
27 |
| - <IncludeSymbols>true</IncludeSymbols> |
28 |
| - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
29 |
| - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
30 |
| - <Nullable>enable</Nullable> |
31 |
| - <LangVersion>8.0</LangVersion> |
32 |
| - <WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors> |
33 |
| - </PropertyGroup> |
34 |
| - |
35 |
| - <PropertyGroup Condition=" '$(Version)' == '' "> |
36 |
| - <VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.0.0</VersionPrefix> <!-- x-release-please-version --> |
37 |
| - <VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix> |
38 |
| - <Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version> |
39 |
| - <Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version> |
40 |
| - </PropertyGroup> |
41 |
| - |
42 |
| - <ItemGroup> |
43 |
| - <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
44 |
| - <PackageReference Include="Supabase.Core" Version="1.0.0" /> |
45 |
| - </ItemGroup> |
46 |
| - |
47 |
| - <ItemGroup> |
48 |
| - <None Include="..\.github\icon.png" Pack="true" Link="icon.png" PackagePath="\" /> |
49 |
| - <None Include="..\README.md" Pack="true" Link="README.md" PackagePath="\" /> |
50 |
| - </ItemGroup> |
51 |
| -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <PackOnBuild>true</PackOnBuild> |
| 5 | + <PackageId>Supabase.Functions</PackageId> |
| 6 | + <RootNamespace>Supabase.Functions</RootNamespace> |
| 7 | + <AssemblyName>Supabase.Functions</AssemblyName> |
| 8 | + <Authors>Joseph Schultz <joseph@acupofjose.com></Authors> |
| 9 | + <Copyright>MIT</Copyright> |
| 10 | + <NeutralLanguage>en</NeutralLanguage> |
| 11 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 12 | + <Owners>Joseph Schultz <joseph@acupofjose.com></Owners> |
| 13 | + <Summary>A C# client for Supabase Functions</Summary> |
| 14 | + <Title>Function</Title> |
| 15 | + <Description>A C# client for Supabase Functions</Description> |
| 16 | + <PackageIconUrl>https://avatars.githubusercontent.com/u/54469796?s=200&v=4</PackageIconUrl> |
| 17 | + <PackageProjectUrl>https://github.com/supabase-community/functions-csharp</PackageProjectUrl> |
| 18 | + <PackageTags>supabase, functions</PackageTags> |
| 19 | + <!-- x-release-please-start-version --> |
| 20 | + <PackageVersion>2.1.0</PackageVersion> |
| 21 | + <ReleaseVersion>2.1.0</ReleaseVersion> |
| 22 | + <!-- x-release-please-end --> |
| 23 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 24 | + <PackageIcon>icon.png</PackageIcon> |
| 25 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 26 | + <RepositoryUrl>https://github.com/supabase-community/functions-csharp</RepositoryUrl> |
| 27 | + <IncludeSymbols>true</IncludeSymbols> |
| 28 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 29 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 30 | + <Nullable>enable</Nullable> |
| 31 | + <LangVersion>8.0</LangVersion> |
| 32 | + <WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors> |
| 33 | + </PropertyGroup> |
| 34 | + |
| 35 | + <PropertyGroup Condition=" '$(Version)' == '' "> |
| 36 | + <VersionPrefix Condition=" '$(VersionPrefix)' == '' ">2.1.0</VersionPrefix> <!-- x-release-please-version --> |
| 37 | + <VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix> |
| 38 | + <Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version> |
| 39 | + <Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version> |
| 40 | + </PropertyGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
| 44 | + <PackageReference Include="Supabase.Core" Version="1.0.0" /> |
| 45 | + </ItemGroup> |
| 46 | + |
| 47 | + <ItemGroup> |
| 48 | + <None Include="..\.github\icon.png" Pack="true" Link="icon.png" PackagePath="\" /> |
| 49 | + <None Include="..\README.md" Pack="true" Link="README.md" PackagePath="\" /> |
| 50 | + </ItemGroup> |
| 51 | +</Project> |
0 commit comments