-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetExtender.UserInterface.WindowsPresentation.ExcelGrid.csproj
More file actions
89 lines (84 loc) · 3.8 KB
/
NetExtender.UserInterface.WindowsPresentation.ExcelGrid.csproj
File metadata and controls
89 lines (84 loc) · 3.8 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0-windows;net7.0-windows;net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<OutputType>Library</OutputType>
<UseWpf>true</UseWpf>
<Authors>Rain0Ash</Authors>
<PackageProjectUrl>https://github.com/Rain0Ash/NetExtender</PackageProjectUrl>
<Version>0.8.9</Version>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../SignTool/Private/NetExtender.snk</AssemblyOriginatorKeyFile>
<Title>NetExtender.UserInterface.WindowsPresentation.ExcelGrid</Title>
<Description>Windows Presentation Foundation User Interface ExcelGrid module of NetExtender Framework</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Rain0Ash/NetExtender</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Extension</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NetExtender.UserInterface.Windows\NetExtender.UserInterface.Windows.csproj"/>
<ProjectReference Include="..\NetExtender.UserInterface.WindowsPresentation\NetExtender.UserInterface.WindowsPresentation.csproj"/>
<ProjectReference Include="..\NetExtender.Windows\NetExtender.Windows.csproj"/>
<ProjectReference Include="..\NetExtender.WindowsPresentation\NetExtender.WindowsPresentation.csproj"/>
</ItemGroup>
<ItemGroup>
<Resource Include="Cursors\AutoFill.cur">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Cursors\Cross.cur">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Cursors\DownArrow.cur">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Cursors\RightArrow.cur">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Compile Update="ExcelGrid.Default.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Dependency.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Commands.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Csv.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Size.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Cells.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Mouse.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Sort.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Common.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Elements.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Keyboard.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Content.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
<Compile Update="ExcelGrid.Interface.cs">
<DependentUpon>ExcelGrid.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>