-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathPlanViewer.Core.csproj
More file actions
27 lines (23 loc) · 1 KB
/
PlanViewer.Core.csproj
File metadata and controls
27 lines (23 loc) · 1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>PlanViewer.Core</RootNamespace>
<Version>1.4.0</Version>
<Authors>Erik Darling</Authors>
<Company>Darling Data LLC</Company>
<Product>SQL Performance Studio</Product>
<Copyright>Copyright (c) 2026 Erik Darling, Darling Data LLC</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.1" />
<PackageReference Include="Meziantou.Framework.Win32.CredentialManager" Version="1.7.18" />
<PackageReference Include="Microsoft.Data.SqlClient.Extensions.Azure" Version="1.0.0" />
<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="180.6.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\PlanIcons\*.png" />
<EmbeddedResource Include="Resources\WaitStats.json" />
</ItemGroup>
</Project>