-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzSqlIdxMgr.csproj
More file actions
71 lines (59 loc) · 2.8 KB
/
AzSqlIdxMgr.csproj
File metadata and controls
71 lines (59 loc) · 2.8 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
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Deterministic>true</Deterministic>
<Description>Azure SQL Index Manager</Description>
<Product>Azure SQL Index Manager</Product>
<IsPackable>true</IsPackable> <!-- Required when using Microsoft.NET.Sdk.Worker -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>azsqlidxmgr</ToolCommandName>
<PackageId>azsqlidxmgr</PackageId>
<AssemblyName>azsqlidxmgr</AssemblyName>
<!-- PublishAot cannot work when dotnet pack is called. Only set it in the workflow. Use IsAotCompatible for dev -->
<IsAotCompatible>true</IsAotCompatible>
<!-- <PublishAot>true</PublishAot> -->
</PropertyGroup>
<PropertyGroup Condition="'$(PublishAot)' == 'true'">
<SelfContained>true</SelfContained>
<InvariantGlobalization>true</InvariantGlobalization>
<OptimizationPreference>Size</OptimizationPreference>
<EventSourceSupport>false</EventSourceSupport>
</PropertyGroup>
<PropertyGroup>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>$(PackageTags);azure;sql;index</PackageTags>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="..\..\azure-sql-scripts\AzureSQLMaintenance.txt" />
</ItemGroup>
<ItemGroup>
<Using Include="System.CommandLine" />
<Using Include="System.CommandLine.Invocation" />
<Using Include="System.CommandLine.Parsing" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="AzSqlIdxMgr.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.17.0" />
<PackageReference Include="Azure.ResourceManager.Sql" Version="1.3.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.2" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.10" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta5.25269.103" />
<PackageReference Include="Tingle.Extensions.Logging" Version="5.3.0" />
<PackageReference Include="Tingle.Extensions.Primitives" Version="5.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\logo.png" Pack="True" PackagePath="\" />
</ItemGroup>
</Project>