File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,21 +8,6 @@ branches:
88nuget :
99 disable_publish_on_pr : true
1010
11- install :
12- # # # .NET Core SDK binaries
13- # # ## 1) from direct url
14- # # - ps: $url = "https://go.microsoft.com/fwlink/?LinkID=798402" # v1.0.0-preview1 x64
15- # # ## 2) from url based on version, for example using an env var CLI_VERSION that can be a
16- # # ## a specific version `1.0.0-preview2-003121` or `Latest` (for latest dev version)
17- - ps : $url = "https://dotnetcli.blob.core.windows.net/dotnet/Sdk/rel-1.0.0/dotnet-dev-win-x64.latest.zip"
18- # Download .NET Core SDK and add to PATH
19- - ps : $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
20- - ps : mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
21- - ps : $tempFile = [System.IO.Path]::GetTempFileName()
22- - ps : (New-Object System.Net.WebClient).DownloadFile($url, $tempFile)
23- - ps : Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFile, $env:DOTNET_INSTALL_DIR)
24- - ps : $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
25-
2611build_script :
2712- ps : .\build.ps1
2813
Original file line number Diff line number Diff line change 1717 <PropertyGroup >
1818 <OutputType >Exe</OutputType >
1919 <TargetFramework >netcoreapp1.0</TargetFramework >
20-
2120 <PackageId >FRC.DotNet.CLI</PackageId >
21+ <AssemblyTitle >FRC DotNet CLI</AssemblyTitle >
22+ <Title >FRC DotNet CLI</Title >
2223 <Authors >RobotDotNet</Authors >
23- <Description >FRC CLI Tool</Description >
24+ <Description >FRC CLI Deployment Tool</Description >
2425 <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
2526 <PackageReleaseNotes >First release</PackageReleaseNotes >
2627 <Copyright >Copyright 2017 (c) RobotDotNet. All rights reserved.</Copyright >
27- <PackageTags >FRC</PackageTags >
28+ <PackageTags >WPILib;FRC;FIRST;RoboRio</PackageTags >
29+ <PackageProjectUrl >https://github.com/robotdotnet/FRC-CLI</PackageProjectUrl >
30+ <PackageLicenseUrl >https://github.com/robotdotnet/FRC-CLI/blob/master/LICENSE.txt</PackageLicenseUrl >
31+ <RepositoryType >git</RepositoryType >
32+ <RepositoryUrl >git://github.com/robotdotnet/FRC-CLI</RepositoryUrl >
2833 </PropertyGroup >
2934</Project >
You can’t perform that action at this time.
0 commit comments