-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathQueryFirst.CommandLine.csproj
More file actions
41 lines (37 loc) · 1.57 KB
/
QueryFirst.CommandLine.csproj
File metadata and controls
41 lines (37 loc) · 1.57 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>QueryFirst.CommandLine</RootNamespace>
<AssemblyName>QueryFirst</AssemblyName>
<PackAsTool>true</PackAsTool>
<ToolCommandName>queryfirst</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Version>2.0.0</Version>
<Authors>Simon Boddy</Authors>
<Company />
<Description>Dotnet global tool for generating a C# wrapper for you .sql files</Description>
<RepositoryUrl>https://github.com/bbsimonbb/QueryFirstX</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Commands\**" />
<EmbeddedResource Remove="Commands\**" />
<None Remove="Commands\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.0" />
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" Version="161.44091.28" />
<PackageReference Include="Mono.Options" Version="6.6.0.161" />
<PackageReference Include="MySql.Data" Version="8.0.22" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Npgsql" Version="5.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
</ItemGroup>
<ItemGroup>
<None Update="qfconfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="..\QueryFirst.SharedAll\QueryFirst.SharedAll.projitems" Label="Shared" />
</Project>