-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpsedit.csproj
More file actions
22 lines (20 loc) · 968 Bytes
/
psedit.csproj
File metadata and controls
22 lines (20 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" />
<PackageReference Include="Terminal.Gui" Version="1.19.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="psedit.psd1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PublishForDebugging" AfterTargets="Build" Condition="'$(Configuration)'=='Debug' and '$(BuildingInsideVisualStudio)'=='true'">
<Exec Command="dotnet publish "$(MSBuildProjectFullPath)" -c $(Configuration) -f $(TargetFramework) -o "$(ProjectDir)bin\$(Configuration)\$(TargetFramework)\publish"" />
</Target>
</Project>