-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathParse.csproj
60 lines (50 loc) · 2.11 KB
/
Parse.csproj
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
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<DocumentationFile>bin\Release\netstandard2.0\Parse.xml</DocumentationFile>
<Version>4.0.0</Version>
<LangVersion>latest</LangVersion>
<Authors>Parse</Authors>
<PackageProjectUrl>https://parseplatform.org/</PackageProjectUrl>
<RepositoryUrl>https://github.com/parse-community/Parse-SDK-dotNET/</RepositoryUrl>
<PackageIconUrl></PackageIconUrl>
<RepositoryType>GitHub</RepositoryType>
<Description>This is the official package for the Parse .NET Standard SDK. Add a cloud backend to any platform supporting .NET Standard 2.0.</Description>
<Copyright>Copyright © Parse Platform</Copyright>
<PackageTags>Parse;parse-platform;parse-server;netstandard;netstandard2.0;backend;sdk;app</PackageTags>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>parse-logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PackageReference Include="OpenCover" Version="4.7.1221" />
</ItemGroup>
<ItemGroup>
<None Remove="parse-logo.png" />
<None Include="parse-logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>