|
1 | | -<?xml version="1.0" encoding="utf-8"?> |
2 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
3 | 2 | <PropertyGroup> |
4 | 3 | <TargetFramework>netstandard2.0</TargetFramework> |
|
23 | 22 | <PackageIcon>icon.png</PackageIcon> |
24 | 23 | <PackageReadmeFile>README.md</PackageReadmeFile> |
25 | 24 | <RepositoryUrl>https://github.com/supabase-community/functions-csharp</RepositoryUrl> |
26 | | - </PropertyGroup> |
27 | | - <PropertyGroup> |
28 | 25 | <IncludeSymbols>true</IncludeSymbols> |
29 | 26 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
30 | | - </PropertyGroup> |
31 | | - <PropertyGroup> |
32 | 27 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
33 | | - </PropertyGroup> |
34 | | - <PropertyGroup> |
35 | 28 | <Nullable>enable</Nullable> |
36 | 29 | <LangVersion>8.0</LangVersion> |
37 | 30 | <WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors> |
38 | 31 | </PropertyGroup> |
| 32 | + |
39 | 33 | <PropertyGroup Condition=" '$(Version)' == '' "> |
40 | 34 | <VersionPrefix Condition=" '$(VersionPrefix)' == '' ">1.3.1</VersionPrefix> |
41 | | - <VersionSuffix Condition=" '$(VersionSuffix)' == '' "> |
42 | | - </VersionSuffix> |
| 35 | + <VersionSuffix Condition=" '$(VersionSuffix)' == '' "></VersionSuffix> |
43 | 36 | <Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version> |
44 | 37 | <Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version> |
45 | 38 | </PropertyGroup> |
46 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
47 | | - <LangVersion>8.0</LangVersion> |
48 | | - </PropertyGroup> |
49 | | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
50 | | - <LangVersion>8.0</LangVersion> |
51 | | - </PropertyGroup> |
| 39 | + |
52 | 40 | <ItemGroup> |
53 | 41 | <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
54 | 42 | <PackageReference Include="supabase-core" Version="0.0.3" /> |
55 | 43 | </ItemGroup> |
| 44 | + |
56 | 45 | <ItemGroup> |
57 | 46 | <None Include="..\.github\icon.png" Pack="true" Link="icon.png" PackagePath="\" /> |
58 | 47 | <None Include="..\README.md" Pack="true" Link="README.md" PackagePath="\" /> |
|
0 commit comments