-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataVista.csproj
64 lines (57 loc) · 2.19 KB
/
DataVista.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>$(222)</PackageId>
<Title>DataVista</Title>
<Authors>agc-86</Authors>
<Description>DataVista is a .NET library for interacting with databases using ADO.NET and providing system management utilities for WPF applications.</Description>
<Copyright>https://github.com/ag-86/DataVista/blob/master/LICENSE.txt</Copyright>
<PackageProjectUrl>https://github.com/ag-86/DataVista/</PackageProjectUrl>
<PackageIcon>DataVista.jpg</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/ag-86/DataVista/</RepositoryUrl>
<PackageTags>ADO,system,management,WPF,Data,Vista,DataVista</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<AnalysisLevel>none</AnalysisLevel>
<Version>1.0.4</Version>
<PackageOutputPath>NuGet Packages\</PackageOutputPath>
<AssemblyVersion>1.0.3</AssemblyVersion>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Documents\DataVista.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="NuGet Packages\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Documents\DataVista.jpg">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\Documents\Class Diagrams\" />
</ItemGroup>
</Project>