forked from bobvanderlinden/sharpfilesystem
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSharpFileSystem.Tests.csproj
More file actions
69 lines (69 loc) · 3.33 KB
/
Copy pathSharpFileSystem.Tests.csproj
File metadata and controls
69 lines (69 loc) · 3.33 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
58
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Description>A virtual file system for .NET written in C#</Description>
<Authors>b3b00</Authors>
<version>1.0.0</version>
<PackageProjectUrl>https://github.com/b3b00/sharpfilesystem</PackageProjectUrl>
<RepositoryUrl>https://github.com/b3b00/sharpfilesystem</RepositoryUrl>
<PackageLicenseUrl>https://github.com/b3b00/sharpfilesystem/blob/master/LICENSE</PackageLicenseUrl>
<PackageVersion>1.0.0</PackageVersion>
<TargetFramework>net8.0</TargetFramework>
<GenerateErrorForMissingTargetingPacks>false</GenerateErrorForMissingTargetingPacks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>
</DocumentationFile>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<LangVersion>7</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<!-- <PackageReference Include="coverlet.collector" Version="1.0.0">-->
<!-- <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>-->
<!-- <PrivateAssets>all</PrivateAssets>-->
<!-- </PackageReference>-->
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="AssertNet.Xunit" Version="1.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="NFluent" Version="3.0.0.351" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="System.Memory" Version="4.6.2" />
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpCoreFileSystem\SharpCoreFileSystem.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="test.zip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="resDir\deepFile.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="test.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<None Remove="resDir\deep\deeper\deeper.txt" />
<EmbeddedResource Include="resDir\deep\deeper\deeper.txt" />
<None Remove="resDir\deep\deep.txt" />
<EmbeddedResource Include="resDir\deep\deep.txt" />
<None Update="filesystem.zip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>