-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShellRun.csproj
More file actions
38 lines (38 loc) · 1.41 KB
/
ShellRun.csproj
File metadata and controls
38 lines (38 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>8.0</LangVersion>
<ApplicationIcon>icon.ico</ApplicationIcon>
<Authors>GasDauMin</Authors>
<Company>co</Company>
<Product />
<PackageIcon>icon.ico</PackageIcon>
<PackageProjectUrl>gasdaumin.eu</PackageProjectUrl>
<Description>Shell execution helper</Description>
<SignAssembly>false</SignAssembly>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fody" Version="6.8.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" />
<PackageReference Include="NLog" Version="5.2.5" />
<PackageReference Include="NLog.Schema" Version="5.2.5" />
</ItemGroup>
<ItemGroup>
<None Include="icon.ico">
<Pack>True</Pack>
<PackagePath>
</PackagePath>
</None>
</ItemGroup>
</Project>