-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAtypical.VirtualFileSystem.Core.csproj
More file actions
57 lines (51 loc) · 2.79 KB
/
Atypical.VirtualFileSystem.Core.csproj
File metadata and controls
57 lines (51 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DefaultDocumentationFolder>../../docs/api</DefaultDocumentationFolder>
<DefaultDocumentationLinksOutputFile>../../docs/links</DefaultDocumentationLinksOutputFile>
<DefaultDocumentationAssemblyPageName>VirtualFileSystem</DefaultDocumentationAssemblyPageName>
</PropertyGroup>
<!-- File inclusion -->
<ItemGroup>
<None Include="../../Logo.png" Pack="true" PackagePath="" />
<None Include="../../LICENSE" Pack="true" PackagePath="" />
<None Include="../../README.md" Pack="true" PackagePath="" />
</ItemGroup>
<!-- Development dependencies -->
<ItemGroup>
<PackageReference Include="DefaultDocumentation" Version="1.2.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
</ItemGroup>
<!-- NuGet metadata -->
<PropertyGroup>
<PackageId>Atypical.VirtualFileSystem</PackageId>
<PackageIcon>Logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Philippe Matray</Authors>
<Company>Atypical Consulting SRL</Company>
<Product>Virtual File System</Product>
<Description>
A virtual file system implementation in modern C#.
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?
"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.
</Description>
<PackageTags>virtual filesystem;testing;core;net10</PackageTags>
<Copyright>Copyright (c) 2022-2025 Atypical Consulting SRL</Copyright>
<PackageProjectUrl>https://github.com/Atypical-Consulting/VirtualFileSystem</PackageProjectUrl>
<RepositoryUrl>https://github.com/Atypical-Consulting/VirtualFileSystem.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>main</RepositoryBranch>
<PackageReleaseNotes>
## Changes
- Add support for .NET 10.0
- Drop support for .NET 8.0
</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLanguage>en-US</PackageLanguage>
</PropertyGroup>
</Project>