Skip to content

Commit

Permalink
Updates package building parameters
Browse files Browse the repository at this point in the history
Getting ready for Alpha 1 release
  • Loading branch information
ThadHouse committed May 26, 2017
1 parent 6adf242 commit 6bb6685
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
15 changes: 0 additions & 15 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,6 @@ branches:
nuget:
disable_publish_on_pr: true

install:
## # .NET Core SDK binaries
## ## 1) from direct url
## - ps: $url = "https://go.microsoft.com/fwlink/?LinkID=798402" # v1.0.0-preview1 x64
## ## 2) from url based on version, for example using an env var CLI_VERSION that can be a
## ## a specific version `1.0.0-preview2-003121` or `Latest` (for latest dev version)
- ps: $url = "https://dotnetcli.blob.core.windows.net/dotnet/Sdk/rel-1.0.0/dotnet-dev-win-x64.latest.zip"
# Download .NET Core SDK and add to PATH
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
- ps: $tempFile = [System.IO.Path]::GetTempFileName()
- ps: (New-Object System.Net.WebClient).DownloadFile($url, $tempFile)
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFile, $env:DOTNET_INSTALL_DIR)
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"

build_script:
- ps: .\build.ps1

Expand Down
11 changes: 8 additions & 3 deletions src/dotnet-frc/dotnet-frc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,18 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.0</TargetFramework>

<PackageId>FRC.DotNet.CLI</PackageId>
<AssemblyTitle>FRC DotNet CLI</AssemblyTitle>
<Title>FRC DotNet CLI</Title>
<Authors>RobotDotNet</Authors>
<Description>FRC CLI Tool</Description>
<Description>FRC CLI Deployment Tool</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>First release</PackageReleaseNotes>
<Copyright>Copyright 2017 (c) RobotDotNet. All rights reserved.</Copyright>
<PackageTags>FRC</PackageTags>
<PackageTags>WPILib;FRC;FIRST;RoboRio</PackageTags>
<PackageProjectUrl>https://github.com/robotdotnet/FRC-CLI</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/robotdotnet/FRC-CLI/blob/master/LICENSE.txt</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/robotdotnet/FRC-CLI</RepositoryUrl>
</PropertyGroup>
</Project>

0 comments on commit 6bb6685

Please sign in to comment.