-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathInstaller.Core.csproj
More file actions
32 lines (28 loc) · 1.25 KB
/
Installer.Core.csproj
File metadata and controls
32 lines (28 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Installer.Core</RootNamespace>
<AssemblyName>Installer.Core</AssemblyName>
<Product>SQL Server Performance Monitor Installer Core</Product>
<Version>2.10.0</Version>
<AssemblyVersion>2.10.0.0</AssemblyVersion>
<FileVersion>2.10.0.0</FileVersion>
<InformationalVersion>2.10.0</InformationalVersion>
<Company>Darling Data, LLC</Company>
<Copyright>Copyright (c) 2026 Darling Data, LLC</Copyright>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<NoWarn>CA1305;CA1845;CA1861;CA2100</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.1" />
<PackageReference Include="Microsoft.Data.SqlClient.Extensions.Azure" Version="1.0.0" />
</ItemGroup>
<!-- Embed SQL scripts as assembly resources for Dashboard consumption -->
<ItemGroup>
<EmbeddedResource Include="..\install\**\*.sql" LinkBase="Resources\install" />
<EmbeddedResource Include="..\upgrades\**\*" LinkBase="Resources\upgrades" />
</ItemGroup>
</Project>