forked from gitextensions/gitextensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitUI.csproj
76 lines (65 loc) · 3.21 KB
/
GitUI.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- To be removed when NRT annotations are complete -->
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\GitExtUtils\Delimiters.cs" Link="Utils\Delimiters.cs" />
<Compile Include="..\GitExtUtils\LazyStringSplit.cs" Link="Utils\LazyStringSplit.cs" />
<Compile Include="..\GitExtUtils\Validates.cs" Link="Utils\Validates.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AppInsights.WindowsDesktop" />
<PackageReference Include="EnvDTE" />
<PackageReference Include="ExCSS" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Core" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" />
<PackageReference Include="JetBrains.Annotations" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BugReporter\BugReporter.csproj" />
<ProjectReference Include="..\Externals\conemu-inside\ConEmuWinForms\ConEmuWinForms.csproj" />
<ProjectReference Include="..\Externals\Git.hub\Git.hub\Git.hub.csproj" />
<ProjectReference Include="..\Externals\ICSharpCode.TextEditor\Project\ICSharpCode.TextEditor.csproj" />
<ProjectReference Include="..\GitCommands\GitCommands.csproj" />
<ProjectReference Include="..\GitExtUtils\GitExtUtils.csproj" />
<ProjectReference Include="..\Externals\NetSpell.SpellChecker\SpellChecker.csproj" />
<ProjectReference Include="..\ResourceManager\ResourceManager.csproj" />
<ProjectReference Include="..\Plugins\GitUIPluginInterfaces\GitUIPluginInterfaces.csproj" />
</ItemGroup>
<ItemGroup>
<!-- Resources -->
<EmbeddedResource Update="Properties\Images.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Images.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx" Generator="ResXFileCodeGenerator" LastGenOutput="Resources.Designer.cs" />
<Compile Update="UserControls\FilterToolBar.Designer.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Properties\Images.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Images.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Resources.Designer.cs" AutoGen="True" DependentUpon="Resources.resx" DesignTime="True" />
<!-- Settings -->
<None Update="Properties\Settings.settings" Generator="SettingsSingleFileGenerator" LastGenOutput="Settings.Designer.cs" />
<Compile Update="Properties\Settings.Designer.cs" AutoGen="True" DependentUpon="Settings.settings" />
<None Include="Properties\DataSources\*.datasource" />
</ItemGroup>
<ItemGroup>
<None Include="ApplicationInsights.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Remove="Resources\Icons\artwork\**" />
<None Remove="Resources\Icons\originals\**" />
<Content Include="Themes\*.css">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Themes\README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>