-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAtypical.VirtualFileSystem.GitHub.csproj
More file actions
55 lines (48 loc) · 2.3 KB
/
Atypical.VirtualFileSystem.GitHub.csproj
File metadata and controls
55 lines (48 loc) · 2.3 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- File inclusion -->
<ItemGroup>
<None Include="../../Logo.png" Pack="true" PackagePath="" />
<None Include="../../LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<!-- Dependencies -->
<ItemGroup>
<PackageReference Include="Octokit" Version="14.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" />
</ItemGroup>
<!-- Project references -->
<ItemGroup>
<ProjectReference Include="..\Atypical.VirtualFileSystem.Core\Atypical.VirtualFileSystem.Core.csproj" />
</ItemGroup>
<!-- NuGet metadata -->
<PropertyGroup>
<PackageId>Atypical.VirtualFileSystem.GitHub</PackageId>
<PackageIcon>Logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Authors>Philippe Matray</Authors>
<Company>Atypical Consulting SRL</Company>
<Product>Virtual File System - GitHub Extension</Product>
<Description>
GitHub repository loading extension for Atypical.VirtualFileSystem.
Load GitHub repositories directly into the Virtual File System for browsing and manipulation.
</Description>
<PackageTags>virtual filesystem;github;repository;octokit;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>
## Initial Release
- Load GitHub repositories into VFS
- Support for authentication and rate limiting
- Configurable file filtering
- Eager, Lazy, and MetadataOnly loading strategies
</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLanguage>en-US</PackageLanguage>
</PropertyGroup>
</Project>