-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path03-Util.FileStorage.Minio.csproj
41 lines (33 loc) · 1.3 KB
/
03-Util.FileStorage.Minio.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetTargetFramework)</TargetFramework>
<PackageIcon>icon.jpg</PackageIcon>
<AssemblyName>Util.FileStorage.Minio</AssemblyName>
<RootNamespace>Util.FileStorage.Minio</RootNamespace>
<Description>Util.FileStorage.Minio是Util应用框架基于Minio文件存储操作类库</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath></OutputPath>
<DocumentationFile>.\obj\Debug\$(NetTargetFramework)\Util.FileStorage.Minio.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath></OutputPath>
<DocumentationFile>.\obj\Release\$(NetTargetFramework)\Util.FileStorage.Minio.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\build\icon.jpg">
<Pack>True</Pack>
<Visible>False</Visible>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Minio" Version="6.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Util.FileStorage\02-Util.FileStorage.csproj" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</Project>