File tree 2 files changed +8
-18
lines changed
2 files changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,6 @@ branches:
8
8
nuget :
9
9
disable_publish_on_pr : true
10
10
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
-
26
11
build_script :
27
12
- ps : .\build.ps1
28
13
Original file line number Diff line number Diff line change 17
17
<PropertyGroup >
18
18
<OutputType >Exe</OutputType >
19
19
<TargetFramework >netcoreapp1.0</TargetFramework >
20
-
21
20
<PackageId >FRC.DotNet.CLI</PackageId >
21
+ <AssemblyTitle >FRC DotNet CLI</AssemblyTitle >
22
+ <Title >FRC DotNet CLI</Title >
22
23
<Authors >RobotDotNet</Authors >
23
- <Description >FRC CLI Tool</Description >
24
+ <Description >FRC CLI Deployment Tool</Description >
24
25
<PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
25
26
<PackageReleaseNotes >First release</PackageReleaseNotes >
26
27
<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 >
28
33
</PropertyGroup >
29
34
</Project >
You can’t perform that action at this time.
0 commit comments