-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrust-reflect-cli.csproj
More file actions
34 lines (29 loc) · 1.31 KB
/
Copy pathrust-reflect-cli.csproj
File metadata and controls
34 lines (29 loc) · 1.31 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- NuGet package settings -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>rust-reflect</ToolCommandName>
<PackageId>rust-reflect-cli</PackageId>
<Version>1.0.0</Version>
<Authors>rust-reflect-cli Contributors</Authors>
<Description>A CLI utility for analyzing and working with decompiled Rust .NET code</Description>
<PackageTags>rust;dotnet;cli;decompiler;analyzer;reflection;search</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/publicrust/rust-reflect-cli</PackageProjectUrl>
<RepositoryUrl>https://github.com/publicrust/rust-reflect-cli.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ICSharpCode.Decompiler" Version="8.2.0.7535" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>