forked from gordon-matt/elFinder.NetCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelFinder.NetCore.csproj
More file actions
27 lines (24 loc) · 905 Bytes
/
Copy pathelFinder.NetCore.csproj
File metadata and controls
27 lines (24 loc) · 905 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<Authors>Yevhen Noskov, Leniel Macaferi, Matt Gordon, Flavio Smirne</Authors>
<Company>N/A</Company>
<NeutralLanguage>en-US</NeutralLanguage>
<Description>elFinder ASP.NET Core backend</Description>
<PackageProjectUrl>https://github.com/gordon-matt/elFinder.NetCore</PackageProjectUrl>
<Version>1.3.6</Version>
<PackageLicenseUrl></PackageLicenseUrl>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="MimeTypes.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="MimeTypes.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="System.Text.Json" Version="4.7.0" />
</ItemGroup>
</Project>