Skip to content

Commit 69a4736

Browse files
committed
Move NuGet metadata into the lib csproj
1 parent b6b36d6 commit 69a4736

File tree

2 files changed

+26
-27
lines changed

2 files changed

+26
-27
lines changed

Directory.Build.props

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,4 @@
1515
<FileVersion>0.1.5</FileVersion>
1616
<InformationalVersion>0.1.5</InformationalVersion>
1717
</PropertyGroup>
18-
19-
<!-- NuGet metadata -->
20-
<PropertyGroup>
21-
<PackageId>Atypical.VirtualFileSystem</PackageId>
22-
<PackageIcon>Logo.png</PackageIcon>
23-
<PackageLicenseFile>LICENSE</PackageLicenseFile>
24-
<PackageReadmeFile>README.md</PackageReadmeFile>
25-
<Authors>Philippe Matray</Authors>
26-
<Description>
27-
A virtual file system implementation in modern C#.
28-
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?
29-
"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.
30-
</Description>
31-
<PackageTags>virtual filesystem;testing;core;net7</PackageTags>
32-
<Copyright>Copyright (c) 2022-2023 Atypical Consulting SRL</Copyright>
33-
<PackageProjectUrl>https://github.com/Atypical-Consulting/VirtualFileSystem</PackageProjectUrl>
34-
<RepositoryUrl>https://github.com/Atypical-Consulting/VirtualFileSystem.git</RepositoryUrl>
35-
<RepositoryType>git</RepositoryType>
36-
<RepositoryBranch>main</RepositoryBranch>
37-
<PackageReleaseNotes>
38-
## Changes
39-
- Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0 @dependabot (#31)
40-
- Bump FluentAssertions from 6.9.0 to 6.10.0 @dependabot (#30)
41-
- Fix readme file on NuGet.org @phmatray (#29)
42-
- Move commands and queries in separate files
43-
</PackageReleaseNotes>
44-
</PropertyGroup>
4518
</Project>

src/Atypical.VirtualFileSystem.Core/Atypical.VirtualFileSystem.Core.csproj

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,31 @@
2424
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
2525
</ItemGroup>
2626

27+
<!-- NuGet metadata -->
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+
- 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>
52+
</PropertyGroup>
2753

2854
</Project>

0 commit comments

Comments
 (0)