Skip to content

Commit 6bb6685

Browse files
committed
Updates package building parameters
Getting ready for Alpha 1 release
1 parent 6adf242 commit 6bb6685

File tree

2 files changed

+8
-18
lines changed

2 files changed

+8
-18
lines changed

appveyor.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,6 @@ branches:
88
nuget:
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-
2611
build_script:
2712
- ps: .\build.ps1
2813

src/dotnet-frc/dotnet-frc.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,18 @@
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>

0 commit comments

Comments
 (0)