-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrun-script.csproj
More file actions
54 lines (47 loc) · 1.87 KB
/
run-script.csproj
File metadata and controls
54 lines (47 loc) · 1.87 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>RunScript</RootNamespace>
<OutputType>Exe</OutputType>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<IsPackable>true</IsPackable>
<EnablePackageValidation>true</EnablePackageValidation>
<PackAsTool>true</PackAsTool>
<ToolCommandName>r</ToolCommandName>
</PropertyGroup>
<PropertyGroup>
<Description>dotnet tool to run arbitrary commands from a project's "scripts" object</Description>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>See https://github.com/xt0rted/dotnet-run-script/blob/main/CHANGELOG.md for more info</PackageReleaseNotes>
<PackageTags>dotnet, tool, cli, build, scripts</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryBranch>main</RepositoryBranch>
</PropertyGroup>
<ItemGroup>
<Using Include="System.CommandLine" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Tests" />
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
</ItemGroup>
<ItemGroup>
<None Include="../assets/icon.png" Pack="true" PackagePath="\">
<LinkBase>assets</LinkBase>
</None>
<None Include="../README.md" Pack="true" PackagePath="\">
<LinkBase>assets</LinkBase>
</None>
<None Include="../LICENSE" Pack="true" PackagePath="\">
<LinkBase>assets</LinkBase>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNet.Glob" Version="3.1.3" />
<PackageReference Include="System.CommandLine" Version="2.0.1" />
<PackageReference Include="System.CommandLine.Rendering" Version="0.4.0-alpha.25306.1" />
</ItemGroup>
</Project>