-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathVisualStudio.csproj
74 lines (59 loc) · 2.9 KB
/
VisualStudio.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A global tool for managing Visual Studio installations
Usage: vs [command] [options|-?|-h|--help] [--save=ALIAS [--global]]
Supported commands:
alias Shows the list of saved aliases
client Launches Visual Studio in client mode
config Opens the config folder.
install Installs a specific edition of Visual Studio.
kill Kills running devenv processes.
log Opens the folder containing the Activity.log file.
modify Modifies an installation of Visual Studio.
run This is default command, so typically it does not
need to be provided as an argument.
update Updates an installation of Visual Studio.
where Locates the installed version(s) of Visual Studio
that satisfy the requested requirements, optionally
retrieving installation properties from it.
See full documentation at $(PackageProjectUrl).
</Description>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
<AssemblyName>vs</AssemblyName>
<RootNamespace>VisualStudio</RootNamespace>
<PackageId>dotnet-vs</PackageId>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<ToolCommandName>vs</ToolCommandName>
<PackAsTool>true</PackAsTool>
<NoWarn>$(NoWarn);NU5118</NoWarn>
<DateTime>$([System.DateTime]::UtcNow.ToString("yyyy-MM-dd"))</DateTime>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Devlooped.Web" Version="1.2.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
<PackageReference Include="System.Text.Json" Version="6.0.8" />
<PackageReference Include="vswhere" Version="3.1.7" PrivateAssets="all" />
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
<PackageReference Include="ThisAssembly" Version="1.0.9" PrivateAssets="all" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.13.0" />
<PackageReference Include="DotNetConfig" Version="1.0.6" />
</ItemGroup>
<ItemGroup>
<None Condition="'$(TargetFramework)' != ''" Include="$(VSWhereDir)vswhere.exe" Link="%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" Pack="true" PackagePath="tools\$(TargetFramework)\any\%(Filename)%(Extension)" />
<EmbeddedResource Include="Docs\*.md" />
</ItemGroup>
<ItemGroup>
<None Remove="Docs\alias.md" />
<None Remove="Docs\client.md" />
<None Include="..\..\readme.md" PackagePath="readme.md" Pack="true" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
<InternalsVisibleTo Include="VisualStudio.Tests" />
<ProjectProperty Include="DateTime" />
<ProjectProperty Include="RepositoryUrl" />
</ItemGroup>
</Project>