29 lines
864 B
XML
29 lines
864 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||
|
<ReleaseVersion>0.1.0</ReleaseVersion>
|
||
|
<RootNamespace>LeanCloud.Storage</RootNamespace>
|
||
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Remove="Class1.cs" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<Folder Include="Internal\" />
|
||
|
<Folder Include="Internal\Codec\" />
|
||
|
<Folder Include="Internal\File\" />
|
||
|
<Folder Include="Internal\Http\" />
|
||
|
<Folder Include="Internal\Object\" />
|
||
|
<Folder Include="Internal\Operation\" />
|
||
|
<Folder Include="Internal\Query\" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Common\Common.csproj" />
|
||
|
</ItemGroup>
|
||
|
</Project>
|