Skip to content

Commit deb968b

Browse files
committed
v0.7.2: Initial release with .Net 5.0 framework added
1 parent b4fdb81 commit deb968b

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

Src/Axuno.VirtualFileSystem/Axuno.VirtualFileSystem.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFrameworks>netstandard2.1;net50</TargetFrameworks>
55
<Nullable>enable</Nullable>
66
<SignAssembly>true</SignAssembly>
77
<AssemblyOriginatorKeyFile>Axuno.VirtualFileSystem.pfx</AssemblyOriginatorKeyFile>
8-
<Version>0.7.1</Version>
8+
<Version>0.7.2</Version>
99
<Authors>axuno gGmbH</Authors>
1010
<Company>axuno gGmbH</Company>
1111
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
1212
<PackageIcon>VirtualFileSystem.png</PackageIcon>
1313
<RepositoryUrl>https://github.com/axuno/Axuno.VirtualFileSystem</RepositoryUrl>
1414
<RepositoryType>Git</RepositoryType>
1515
<PackageTags>virtual file system netstandard c#</PackageTags>
16-
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
16+
<PackageReleaseNotes>Initial release with .Net 5.0 framework added</PackageReleaseNotes>
1717
<Copyright>© 2013 - 2020 Volosoft. Open source license with LGPLv3.0</Copyright>
1818
<Description>The Virtual File System makes it possible to manage files that do not exist on a physical file system (e.g. disk).
1919

@@ -40,6 +40,7 @@ The library is a modified version of Volo.Abp.VirtualFileSystem 3.3.1</Descripti
4040
<Deterministic>true</Deterministic>
4141
<PublishRepositoryUrl>true</PublishRepositoryUrl>
4242
<EmbedUntrackedSources>true</EmbedUntrackedSources>
43+
<IncludeSymbols>true</IncludeSymbols>
4344
</PropertyGroup>
4445

4546
<ItemGroup>

Src/VirtualFileSystem.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30413.136
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Axuno.VirtualFileSystem", "Axuno.VirtualFileSystem\Axuno.VirtualFileSystem.csproj", "{5C72FA33-0772-4460-978A-C8D0DAD1A219}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{5C72FA33-0772-4460-978A-C8D0DAD1A219}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{5C72FA33-0772-4460-978A-C8D0DAD1A219}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{5C72FA33-0772-4460-978A-C8D0DAD1A219}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{5C72FA33-0772-4460-978A-C8D0DAD1A219}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {0C263EE1-958C-482E-990E-012E01DE33FB}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)