|
26 | 26 |
|
27 | 27 | <!-- NuGet metadata --> |
28 | 28 | <PropertyGroup> |
29 | | - <PackageId>Atypical.VirtualFileSystem</PackageId> |
30 | | - <PackageIcon>Logo.png</PackageIcon> |
31 | | - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
32 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
33 | | - <Authors>Philippe Matray</Authors> |
34 | | - <Description> |
35 | | - A virtual file system implementation in modern C#. |
36 | | - When writing applications in .NET, you often need to write or read the contents of a file. .NET provides `System.IO` namespace dedicated to this purpose. But how do we deal with the filesystem when testing our code? |
37 | | - "Virtual File System" is an attempt to solve this problem. Currently, this library is at an early stage of development. If you need additional functionality, I invite you to open an issue to discuss it. |
38 | | - </Description> |
39 | | - <PackageTags>virtual filesystem;testing;core;net7</PackageTags> |
40 | | - <Copyright>Copyright (c) 2022-2023 Atypical Consulting SRL</Copyright> |
41 | | - <PackageProjectUrl>https://github.com/Atypical-Consulting/VirtualFileSystem</PackageProjectUrl> |
42 | | - <RepositoryUrl>https://github.com/Atypical-Consulting/VirtualFileSystem.git</RepositoryUrl> |
43 | | - <RepositoryType>git</RepositoryType> |
44 | | - <RepositoryBranch>main</RepositoryBranch> |
45 | | - <PackageReleaseNotes> |
46 | | - ## Changes |
47 | | - - Add Directories and Files to IDirectoryNode.cs @phmatray (#28) |
48 | | - - Remove the dependency to Root in VFSIndex @phmatray (#27) |
49 | | - - Fix node creation in VFS.cs @phmatray (#26) |
50 | | - </PackageReleaseNotes> |
51 | | - </PropertyGroup> |
52 | | - |
53 | | - <!-- Versioning --> |
54 | | - <!-- https://saebamini.com/how-to-version-your-net-nuget-packages-libraries-and-assemblies-azure-yaml-pipelines-example-using-net-core-cli/ --> |
55 | | - <PropertyGroup> |
56 | | - <Version>0.1.5</Version> |
57 | | - <AssemblyVersion>0.1.5</AssemblyVersion> |
58 | | - <FileVersion>0.1.5</FileVersion> |
59 | | - <InformationalVersion>0.1.5</InformationalVersion> |
| 29 | + <PackageId>Atypical.VirtualFileSystem</PackageId> |
| 30 | + <PackageIcon>Logo.png</PackageIcon> |
| 31 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 32 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 33 | + <Authors>Philippe Matray</Authors> |
| 34 | + <Description> |
| 35 | + A virtual file system implementation in modern C#. |
| 36 | + When writing applications in .NET, you often need to write or read the contents of a file. .NET provides `System.IO` namespace dedicated to this purpose. But how do we deal with the filesystem when testing our code? |
| 37 | + "Virtual File System" is an attempt to solve this problem. Currently, this library is at an early stage of development. If you need additional functionality, I invite you to open an issue to discuss it. |
| 38 | + </Description> |
| 39 | + <PackageTags>virtual filesystem;testing;core;net7</PackageTags> |
| 40 | + <Copyright>Copyright (c) 2022-2023 Atypical Consulting SRL</Copyright> |
| 41 | + <PackageProjectUrl>https://github.com/Atypical-Consulting/VirtualFileSystem</PackageProjectUrl> |
| 42 | + <RepositoryUrl>https://github.com/Atypical-Consulting/VirtualFileSystem.git</RepositoryUrl> |
| 43 | + <RepositoryType>git</RepositoryType> |
| 44 | + <RepositoryBranch>main</RepositoryBranch> |
| 45 | + <PackageReleaseNotes> |
| 46 | + ## Changes |
| 47 | + - Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0 @dependabot (#31) |
| 48 | + - Bump FluentAssertions from 6.9.0 to 6.10.0 @dependabot (#30) |
| 49 | + - Fix readme file on NuGet.org @phmatray (#29) |
| 50 | + - Move commands and queries in separate files |
| 51 | + </PackageReleaseNotes> |
60 | 52 | </PropertyGroup> |
61 | 53 |
|
62 | 54 | </Project> |
0 commit comments