|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | 3 | <Description>An abstract/virtual filesystem framework with many built-ins filesystems for .NET</Description> |
4 | 4 | <Copyright>Alexandre Mutel</Copyright> |
5 | 5 | <AssemblyTitle>Zio</AssemblyTitle> |
6 | 6 | <NeutralLanguage>en-US</NeutralLanguage> |
7 | 7 | <Authors>Alexandre Mutel</Authors> |
8 | | - <TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net9.0</TargetFrameworks> |
| 8 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net10.0</TargetFrameworks> |
9 | 9 | <AssemblyName>Zio</AssemblyName> |
10 | 10 | <PackageId>Zio</PackageId> |
11 | 11 | <PackageTags>filesystem;vfs;VirtualFileSystem;virtual;abstract;directory;files;io;mock</PackageTags> |
|
24 | 24 | <ItemGroup> |
25 | 25 | <None Include="../../img/zio.png" Pack="true" PackagePath="" /> |
26 | 26 | <None Include="../../readme.md" Pack="true" PackagePath="/" /> |
27 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
28 | 27 | <PackageReference Include="MinVer"> |
29 | 28 | <PrivateAssets>all</PrivateAssets> |
30 | 29 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
31 | 30 | </PackageReference> |
32 | 31 | </ItemGroup> |
33 | 32 |
|
34 | 33 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
35 | | - <PackageReference Include="System.IO.Compression"> |
36 | | - </PackageReference> |
37 | | - <PackageReference Include="System.IO.Compression.ZipFile"> |
38 | | - </PackageReference> |
39 | | - <PackageReference Include="System.Memory"> |
40 | | - </PackageReference> |
| 34 | + <PackageReference Include="System.IO.Compression"/> |
| 35 | + <PackageReference Include="System.IO.Compression.ZipFile"/> |
| 36 | + <PackageReference Include="System.Memory"/> |
41 | 37 | </ItemGroup> |
42 | 38 |
|
43 | 39 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'"> |
44 | | - <PackageReference Include="System.IO.Compression"> |
45 | | - </PackageReference> |
46 | | - <PackageReference Include="System.IO.Compression.ZipFile"> |
47 | | - </PackageReference> |
| 40 | + <PackageReference Include="System.IO.Compression"/> |
| 41 | + <PackageReference Include="System.IO.Compression.ZipFile"/> |
48 | 42 | </ItemGroup> |
49 | 43 |
|
50 | 44 | <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'"> |
|
61 | 55 | <DefineConstants>$(AdditionalConstants);NETSTANDARD;HAS_ZIPARCHIVE;HAS_NULLABLEANNOTATIONS</DefineConstants> |
62 | 56 | </PropertyGroup> |
63 | 57 |
|
64 | | - <PropertyGroup Condition=" '$(TargetFramework)' == 'net9.0'"> |
| 58 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'net10.0'"> |
65 | 59 | <IsTrimmable>true</IsTrimmable> |
66 | 60 | <IsAotCompatible>true</IsAotCompatible> |
67 | 61 | <DefineConstants>$(AdditionalConstants);NETSTANDARD;HAS_ZIPARCHIVE;HAS_NULLABLEANNOTATIONS;HAS_ALTERNATEEQUALITYCOMPARER</DefineConstants> |
|
0 commit comments