-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathManagedCode.Storage.Core.csproj
More file actions
33 lines (28 loc) · 1.43 KB
/
ManagedCode.Storage.Core.csproj
File metadata and controls
33 lines (28 loc) · 1.43 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>9</LangVersion>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Title>ManagedCode.Storage.Core</Title>
<Authors>ManagedCode</Authors>
<PackageProjectUrl>https://github.com/managed-code-hub/Storage</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/managed-code-hub/Storage/blob/main/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/managed-code-hub/Storage</RepositoryUrl>
<PackageVersion>0.0.1</PackageVersion>
<Description>Base implementation Storage, Include FTP and Local File system</Description>
<PackageIcon>logo.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\logo.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>