Skip to content

Commit 3e4b071

Browse files
committed
VS2017
1 parent 98963b1 commit 3e4b071

File tree

7 files changed

+621
-621
lines changed

7 files changed

+621
-621
lines changed

Databasic.vbproj

+194-194
Large diffs are not rendered by default.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Databasic - Core Package
22

3-
[![Latest Stable Version](https://img.shields.io/badge/Stable-v1.2.4-brightgreen.svg?style=plastic)](https://github.com/databasic-net/databasic-core/releases)
3+
[![Latest Stable Version](https://img.shields.io/badge/Stable-v1.2.5-brightgreen.svg?style=plastic)](https://github.com/databasic-net/databasic-core/releases)
44
[![License](https://img.shields.io/badge/Licence-BSD3-brightgreen.svg?style=plastic)](https://raw.githubusercontent.com/databasic-net/databasic-core/master/LICENCE.md)
55
![.NET Version](https://img.shields.io/badge/.NET->=4.0-brightgreen.svg?style=plastic)
66

_CreateNewNuGetPackage/Config.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $releaseNotes = ""
2626
# e.g. $configuration = "Release"
2727
# $platform = "AnyCPU"
2828
$configuration = ""
29-
$platform = "AnyCPU"
29+
$platform = ""
3030

3131
# Specify any NuGet Pack Properties to pass to MsBuild.
3232
# e.g. $packProperties = "TargetFrameworkVersion=v3.5;Optimize=true"
@@ -58,7 +58,7 @@ $appendConfigurationAndPlatformToNuGetPackageFileName = $true
5858
$sourceToUploadTo = ""
5959

6060
# The API Key to use to upload the package to the gallery. If not provided and a system-level one does not exist for the specified Source, you will be prompted for it.
61-
$apiKey = "bbfbd002-ddfe-4968-b61a-e12bd7e29cf7"
61+
$apiKey = ""
6262

6363
# Specify any NuGet Push options to pass to nuget.exe.
6464
# e.g. $pushOptions = "-Timeout 120"

_CreateNewNuGetPackage/DoNotModify/CreateNuGetPackage.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Set-StrictMode -Version Latest
1515
# PowerShell v2.0 compatible version of [string]::IsNullOrWhitespace.
1616
function Test-StringIsNullOrWhitespace([string]$string)
1717
{
18-
if ($string -ne $null) { $string = $string.Trim() }
19-
return [string]::IsNullOrEmpty($string)
18+
if ($string -ne $null) { $string = $string.Trim() }
19+
return [string]::IsNullOrEmpty($string)
2020
}
2121

2222
# Display the parameter values passed to this script.

_CreateNewNuGetPackage/DoNotModify/New-NuGetPackage.ps1

+420-420
Large diffs are not rendered by default.
726 KB
Binary file not shown.

_CreateNewNuGetPackage/DoNotModify/UploadNuGetPackage.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Set-StrictMode -Version Latest
1212
# PowerShell v2.0 compatible version of [string]::IsNullOrWhitespace.
1313
function Test-StringIsNullOrWhitespace([string]$string)
1414
{
15-
if ($string -ne $null) { $string = $string.Trim() }
16-
return [string]::IsNullOrEmpty($string)
15+
if ($string -ne $null) { $string = $string.Trim() }
16+
return [string]::IsNullOrEmpty($string)
1717
}
1818

1919
# Get the directory that this script is in.

0 commit comments

Comments
 (0)