forked from microsoft/VFSForGit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGVFS.Hooks.csproj
More file actions
119 lines (113 loc) · 4.95 KB
/
GVFS.Hooks.csproj
File metadata and controls
119 lines (113 loc) · 4.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net471</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LibGit2Sharp.NativeBinaries" Version="2.0.322" />
</ItemGroup>
<ItemGroup>
<!--
Files from GVFS.Common included as links here to prevent adding
project reference. The project reference leads to performance degradation
due to the other dependencies that come along with GVFS.Common.
-->
<Compile Include="..\GVFS.Common\ConsoleHelper.cs">
<Link>Common\ConsoleHelper.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Git\GitOid.cs">
<Link>Common\Git\GitOid.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Git\GitVersion.cs">
<Link>Common\Git\GitVersion.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Git\LibGit2Exception.cs">
<Link>Common\Git\LibGit2Exception.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Git\LibGit2Repo.cs">
<Link>Common\Git\LibGit2Repo.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Git\LibGit2RepoInvoker.cs">
<Link>Common\Git\LibGit2RepoInvoker.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\GVFSConstants.cs">
<Link>Common\GVFSConstants.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\GVFSEnlistment.Shared.cs">
<Link>Common\GVFSEnlistment.Shared.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\GVFSLock.Shared.cs">
<Link>Common\GVFSLock.Shared.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\NamedPipes\BrokenPipeException.cs">
<Link>Common\NamedPipes\BrokenPipeException.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\NamedPipes\LockNamedPipeMessages.cs">
<Link>Common\NamedPipes\LockNamedPipeMessages.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\NamedPipes\UnstageNamedPipeMessages.cs">
<Link>Common\NamedPipes\UnstageNamedPipeMessages.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\NamedPipes\NamedPipeClient.cs">
<Link>Common\NamedPipes\NamedPipeClient.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\NamedPipes\NamedPipeStreamReader.cs">
<Link>Common\NamedPipes\NamedPipeStreamReader.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\NamedPipes\NamedPipeStreamWriter.cs">
<Link>Common\NamedPipes\NamedPipeStreamWriter.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\NativeMethods.Shared.cs">
<Link>Common\NativeMethods.Shared.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Paths.Shared.cs">
<Link>Common\Paths.Shared.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\ProcessHelper.cs">
<Link>Common\ProcessHelper.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\ProcessResult.cs">
<Link>Common\ProcessResult.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\SHA1Util.cs">
<Link>Common\SHA1Util.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Tracing\EventLevel.cs">
<Link>Common\Tracing\EventLevel.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Tracing\EventMetadata.cs">
<Link>Common\Tracing\EventMetadata.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Tracing\EventOpcode.cs">
<Link>Common\Tracing\EventOpcode.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Tracing\ITracer.cs">
<Link>Common\Tracing\ITracer.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Tracing\NullTracer.cs">
<Link>Common\Tracing\ITracer.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\Tracing\Keywords.cs">
<Link>Common\Tracing\Keywords.cs</Link>
</Compile>
<Compile Include="..\GVFS.Common\HealthCalculator\HydrationStatusCircuitBreaker.cs">
<Link>Common\HealthCalculator\HydrationStatusCircuitBreaker.cs</Link>
</Compile>
<Compile Include="..\GVFS.Platform.Windows\WindowsFileSystem.Shared.cs">
<Link>Windows\WindowsFileSystem.Shared.cs</Link>
</Compile>
<Compile Include="..\GVFS.Platform.Windows\WindowsPlatform.Shared.cs">
<Link>Windows\WindowsPlatform.Shared.cs</Link>
</Compile>
</ItemGroup>
<Target Name="_GenerateConstantsFile" BeforeTargets="BeforeCompile">
<!-- Generate GVFS constants file with the minimum Git version -->
<GenerateGVFSConstants MinimumGitVersion="$(MinimumGitVersion)" LibGit2FileName="$(libgit2_filename)" OutputFile="$(IntermediateOutputPath)GVFSConstants.g.cs" />
<!-- Add the generated file to the list of file writes for MSBuild to keep track of for clean-up -->
<ItemGroup>
<Compile Include="$(IntermediateOutputPath)GVFSConstants.g.cs" />
<FileWrites Include="$(IntermediateOutputPath)GVFSConstants.g.cs" />
</ItemGroup>
</Target>
</Project>