-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathMicrosoft.PowerShell.ConsoleGuiTools.csproj
More file actions
36 lines (31 loc) · 1.45 KB
/
Microsoft.PowerShell.ConsoleGuiTools.csproj
File metadata and controls
36 lines (31 loc) · 1.45 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\ConsoleGuiTools.Common.props" />
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<!-- To pull Terminal.Gui from a local nuget source:
- Build Terminal.Gui locally in ../../gui-cs/Terminal.Gui
- Change Terminal.Gui Version= to "major.minor.patch-*"
- Add ';https://api.nuget.org/v3/index.json' to the end of the RestoreSources property group below
- Uncomment the RestoreSources property group below
-->
<!-- <RestoreSources>$(RestoreSources);../../../gui-cs/Terminal.Gui/Terminal.Gui/bin/Debug</RestoreSources> -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nstack.Core" />
<PackageReference Include="Terminal.Gui" />
<PackageReference Include="Microsoft.PowerShell.SDK" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include ="../Microsoft.PowerShell.OutGridView.Models/Microsoft.PowerShell.OutGridView.Models.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Microsoft.PowerShell.ConsoleGuiTools.psd1" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<PropertyGroup>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisMode>Recommended</AnalysisMode>
</PropertyGroup>
</Project>