-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitpod-tool.csproj
31 lines (27 loc) · 1.17 KB
/
gitpod-tool.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RuntimeIdentifiers>linux-x64</RuntimeIdentifiers>
<Version>0.4.3</Version>
<InformationalVersion></InformationalVersion>
<Authors>Carsten Lohmann</Authors>
<Product>Gitpod Tool or short gpt</Product>
<Description>A little tool to make life easier with gitpod and web development</Description>
<RepositoryUrl>https://github.com/Derroylo/gitpod-tool</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="newtonsoft.json" Version="13.0.3" />
<PackageReference Include="octokit" Version="5.1.0" />
<PackageReference Include="Semver" Version="2.3.0" />
<PackageReference Include="Spectre.Console" Version="0.46.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.46.0" />
<PackageReference Include="yamldotnet" Version="13.1.0" />
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="gpt.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>%(Filename)%(Extension)</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
</Project>