Skip to content

Commit 234d6b3

Browse files
committed
Updated project file
1 parent 2331fe5 commit 234d6b3

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The Virtual File System makes it possible to manage files that do not exist on a
77
* The ```VirtualFileSystem``` can be extended by additional ```IVirtualFileProvider```s.
88
* Out-of-the-box, ```Microsoft.Extensions.FileProviders.Composite```, ```Microsoft.Extensions.FileProviders.Embedded``` and ```Microsoft.Extensions.FileProviders.Physical``` are integrated.
99
* Virtual files can be used just like static files in an application.
10-
* JavaScript, CSS, image files and all other web file types can be embedded into assemblies and used just like the static files.
10+
* JavaScript, CSS, image files and all other file types can be embedded into assemblies and used just like the static files.
1111
* An application (or library) can override an embedded file just by placing a static file with the same name and extension into the same folder of the virtual file system.
1212

1313

Src/Axuno.VirtualFileSystem/Axuno.VirtualFileSystem.csproj

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,43 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<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>
643
</PropertyGroup>
744

845
<ItemGroup>
@@ -12,4 +49,11 @@
1249
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.9" />
1350
</ItemGroup>
1451

52+
<ItemGroup>
53+
<None Include="..\..\VirtualFileSystem.png">
54+
<Pack>True</Pack>
55+
<PackagePath></PackagePath>
56+
</None>
57+
</ItemGroup>
58+
1559
</Project>

0 commit comments

Comments
 (0)