|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFramework>netstandard2.1</TargetFramework> |
5 | 5 | <Nullable>enable</Nullable> |
| 6 | + <SignAssembly>true</SignAssembly> |
| 7 | + <AssemblyOriginatorKeyFile>Axuno.VirtualFileSystem.pfx</AssemblyOriginatorKeyFile> |
| 8 | + <Version>0.7.0</Version> |
| 9 | + <Authors>axuno gGmbH</Authors> |
| 10 | + <Company>axuno gGmbH</Company> |
| 11 | + <PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression> |
| 12 | + <PackageIcon>VirtualFileSystem.png</PackageIcon> |
| 13 | + <RepositoryUrl>https://github.com/axuno/Axuno.VirtualFileSystem</RepositoryUrl> |
| 14 | + <RepositoryType>Git</RepositoryType> |
| 15 | + <PackageTags>virtual file system netstandard c#</PackageTags> |
| 16 | + <PackageReleaseNotes>Initial release</PackageReleaseNotes> |
| 17 | + <Copyright>© 2013 - 2020 Volosoft. Open source license with LGPLv3.0</Copyright> |
| 18 | + <Description>The Virtual File System makes it possible to manage files that do not exist on a physical file system (e.g. disk). |
| 19 | + |
| 20 | +* The VirtualFileSystem can be extended by additional IVirtualFileProviders. |
| 21 | +* Out-of-the-box, Microsoft.Extensions.FileProviders.Composite, Microsoft.Extensions.FileProviders.Embedded and Microsoft.Extensions.FileProviders.Physical are integrated. |
| 22 | +* Virtual files can be used just like static files in an application. |
| 23 | +* JavaScript, CSS, image files and all other file types can be embedded into assemblies and used just like the static files. |
| 24 | + |
| 25 | +The library is a modified version of Volo.Abp.VirtualFileSystem 3.3.1</Description> |
| 26 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 27 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 28 | + </PropertyGroup> |
| 29 | + |
| 30 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 31 | + <DefineConstants>DEBUG;TRACE</DefineConstants> |
| 32 | + <DocumentationFile></DocumentationFile> |
| 33 | + <OutputPath>bin\Debug\</OutputPath> |
| 34 | + </PropertyGroup> |
| 35 | + |
| 36 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 37 | + <OutputPath>bin\Release\</OutputPath> |
| 38 | + <DocumentationFile>bin\Release\Axuno.VirtualFileSystem.xml</DocumentationFile> |
| 39 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 40 | + <Deterministic>true</Deterministic> |
| 41 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 42 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
6 | 43 | </PropertyGroup> |
7 | 44 |
|
8 | 45 | <ItemGroup> |
|
12 | 49 | <PackageReference Include="Microsoft.Extensions.Options" Version="3.1.9" /> |
13 | 50 | </ItemGroup> |
14 | 51 |
|
| 52 | + <ItemGroup> |
| 53 | + <None Include="..\..\VirtualFileSystem.png"> |
| 54 | + <Pack>True</Pack> |
| 55 | + <PackagePath></PackagePath> |
| 56 | + </None> |
| 57 | + </ItemGroup> |
| 58 | + |
15 | 59 | </Project> |
0 commit comments