-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMsSqlToolBelt.csproj
More file actions
100 lines (100 loc) · 4.63 KB
/
MsSqlToolBelt.csproj
File metadata and controls
100 lines (100 loc) · 4.63 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
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<Version>24.203.0.711</Version>
<FileVersion>24.203.0.711</FileVersion>
<AssemblyVersion>24.203.0.711</AssemblyVersion>
<ApplicationIcon>MsSqlToolBelt.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="MsSqlToolBelt.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.3.0.90" />
<PackageReference Include="Azure.Identity" Version="1.13.2" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Dapper" Version="2.1.44" />
<PackageReference Include="MahApps.Metro" Version="2.4.10" />
<PackageReference Include="MahApps.Metro.IconPacks.Material" Version="5.1.0" />
<PackageReference Include="MahApps.Metro.IconPacks.PixelartIcons" Version="5.1.0" />
<PackageReference Include="Markdig" Version="0.38.0" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SqlServer.Management.SqlParser" Version="172.1.1" />
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" Version="172.52.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.12.19" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="RestSharp" Version="112.1.0" />
<PackageReference Include="RestSharp.Serializers.NewtonsoftJson" Version="112.1.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="System.Formats.Asn1" Version="9.0.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.3.1" />
<PackageReference Include="ZimLabs.CoreLib" Version="2.3.0" />
<PackageReference Include="ZimLabs.TableCreator" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<None Update="ClassGenTypeConversion.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CustomColors.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Packages.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\ClassDefaultComment.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\ClassDefault.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\ClassDefaultWithNsComment.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\ClassDefaultWithNs.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\EfCreatingBuilder.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\PropertyBackingFieldComment.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\PropertyBackingFieldCommentSetField.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\PropertyBackingFieldDefault.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\PropertyBackingFieldDefaultSetField.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\PropertyDefault.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Templates\PropertyDefaultComment.cgt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Themes\AvalonCSharpSchema.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Themes\AvalonCSharpSchema_Dark.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Themes\AvalonSqlSchema.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Themes\AvalonSqlSchema_Dark.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>