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