|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>WinExe</OutputType> |
| 5 | + <TargetFramework>netcoreapp3.0</TargetFramework> |
| 6 | + <RootNamespace>CSWinFormDataGridView</RootNamespace> |
| 7 | + <AssemblyName>CSWinFormDataGridView</AssemblyName> |
| 8 | + |
| 9 | + <!-- Don't automatically generate assembly info attributes |
| 10 | + found in AssemblyInfo.cs. This property is useful for |
| 11 | + applications ported from NetFx, which may have used |
| 12 | + AssemblyInfo.cs --> |
| 13 | + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| 14 | + </PropertyGroup> |
| 15 | + |
| 16 | + <ItemGroup> |
| 17 | + <FrameworkReference Include="Microsoft.DesktopUI" /> |
| 18 | + <PackageReference Include="System.Data.SqlClient" Version="4.5.1" /> |
| 19 | + </ItemGroup> |
| 20 | + |
| 21 | + <!-- By default, all .cs and .resx files in the current |
| 22 | + directory or descendant directories will be included. |
| 23 | + Optionally, they can be updated as demonstrated here |
| 24 | + so that dependent files will appear as expected in |
| 25 | + Visual Studio's solution explorer. --> |
| 26 | + <ItemGroup> |
| 27 | + <Compile Update="CustomDataGridViewColumn\MainForm.Designer.cs"> |
| 28 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 29 | + </Compile> |
| 30 | + <Compile Update="DataGridViewPaging\MainForm.Designer.cs"> |
| 31 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 32 | + </Compile> |
| 33 | + <Compile Update="EditingControlHosting\MainForm.Designer.cs"> |
| 34 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 35 | + </Compile> |
| 36 | + <Compile Update="JustInTimeDataLoading\MainForm.Designer.cs"> |
| 37 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 38 | + </Compile> |
| 39 | + <Compile Update="MultipleLayeredColumnHeader\MainForm.Designer.cs"> |
| 40 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 41 | + </Compile> |
| 42 | + <EmbeddedResource Update="CustomDataGridViewColumn\MainForm.resx"> |
| 43 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 44 | + </EmbeddedResource> |
| 45 | + <EmbeddedResource Update="DataGridViewPaging\MainForm.resx"> |
| 46 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 47 | + </EmbeddedResource> |
| 48 | + <EmbeddedResource Update="EditingControlHosting\MainForm.resx"> |
| 49 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 50 | + </EmbeddedResource> |
| 51 | + <EmbeddedResource Update="JustInTimeDataLoading\MainForm.resx"> |
| 52 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 53 | + </EmbeddedResource> |
| 54 | + <EmbeddedResource Update="MultipleLayeredColumnHeader\MainForm.resx"> |
| 55 | + <DependentUpon>MainForm.cs</DependentUpon> |
| 56 | + </EmbeddedResource> |
| 57 | + <Compile Update="Properties\Resources.Designer.cs"> |
| 58 | + <DependentUpon>Resources.resx</DependentUpon> |
| 59 | + </Compile> |
| 60 | + </ItemGroup> |
| 61 | + |
| 62 | + <ItemGroup> |
| 63 | + <Content Include="CustomDataGridViewColumn\ReadMe.txt" /> |
| 64 | + <Content Include="DataGridViewPaging\ReadMe.txt" /> |
| 65 | + <Content Include="EditingControlHosting\ReadMe.txt" /> |
| 66 | + <Content Include="JustInTimeDataLoading\ReadMe.txt" /> |
| 67 | + <Content Include="MultipleLayeredColumnHeader\ReadMe.txt" /> |
| 68 | + </ItemGroup> |
| 69 | + |
| 70 | +</Project> |
0 commit comments