Skip to content

Commit

Permalink
Whoops!
Browse files Browse the repository at this point in the history
  • Loading branch information
AptiviCEO committed Dec 17, 2022
1 parent 9321012 commit 91cec0c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
- name: MSBuild Installation
uses: microsoft/setup-msbuild@v1.0.2
- name: Dependency Restoration
run: nuget restore "TermReader.sln"
run: nuget restore "TermRead.sln"
- name: Solution Compilation
run: msbuild "TermReader.sln" /p:Configuration=Release
run: msbuild "TermRead.sln" /p:Configuration=Release
- name: NuGet Preparation
run: nuget setApiKey ${{ secrets.NUGET_APIKEY }}
- name: Package Publication
run: |
$path = "TermReader\bin\Release"
$FileName = Get-ChildItem -Path $path -Name -Filter "TermReader.*"
$path = "TermRead\bin\Release"
$FileName = Get-ChildItem -Path $path -Name -Filter "TermRead.*"
nuget push "$path\$FileName" -source "nuget.org"
6 changes: 3 additions & 3 deletions DocGen/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"src": [
{
"files": [ "TermReader/**.csproj" ],
"files": [ "TermRead/**.csproj" ],
"src": ".."
}
],
Expand All @@ -30,7 +30,7 @@
],
"dest": "../docs",
"globalMetadata": {
"_appTitle": "TermReader API - Aptivi Internals",
"_appTitle": "TermRead API - Aptivi Internals",
"_enableSearch": true
},
"globalMetadataFiles": [],
Expand All @@ -43,7 +43,7 @@
"cleanupCacheHistory": false,
"disableGitFeatures": false,
"sitemap": {
"baseUrl": "https://aptivi.github.io/TermReader/"
"baseUrl": "https://aptivi.github.io/TermRead/"
}
}
}
8 changes: 4 additions & 4 deletions DocGen/index.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
## What is TermReader?
## What is TermRead?

TermRead is a next-generation console reader that allows you to flexibly write your input to the console without any limitations.

## What is this web page?

This webpage is an API documentation for mod developers to be used as reference. It constantly gets updated as we push the updates to the main and servicing versions of this project.

If you still intend to use a documentation specific to your preferred version of TermReader, you may refer to the [releases](https://github.com/Aptivi/TermReader/releases) page of the project and download the attached `<version>-doc.rar` file.
If you still intend to use a documentation specific to your preferred version of TermRead, you may refer to the [releases](https://github.com/Aptivi/TermRead/releases) page of the project and download the attached `<version>-doc.rar` file.

To get started using the documentation, select `API Documentation` from the top menu and select a namespace to get a clear overview of the API.

## Feedback

If you wish to leave feedback to us about this API reference website, use the [issue tracker](https://github.com/Aptivi/TermReader/issues) of the project.
If you wish to leave feedback to us about this API reference website, use the [issue tracker](https://github.com/Aptivi/TermRead/issues) of the project.

If you wish to contribute to the documentation of the API, go to the project source code and make your improvements there on a draft [Pull Request](https://github.com/Aptivi/TermReader/pulls); we don't support override files that are made by clicking on `Improve this doc`.
If you wish to contribute to the documentation of the API, go to the project source code and make your improvements there on a draft [Pull Request](https://github.com/Aptivi/TermRead/pulls); we don't support override files that are made by clicking on `Improve this doc`.

Any meaningful contributions are welcome.

Expand Down
18 changes: 9 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@ version: 'v4.x-{build}'
image: Visual Studio 2022
dotnet_csproj:
patch: true
file: TermReader\TermReader.csproj
file: TermRead\TermRead.csproj
version: ''
package_version: '4.0.0-build{build}'
assembly_version: ''
environment:
WEBHOOK_URL:
secure: p3nnkhnWtqFFH8UJ1eaKFfRjFPlOVhNtmLjd94R7+KSbgj9uzPvIyEJjJTk6G9e4wy94jdHku81r6zqWBCRF7Ddeex1jMhVvzUNgV5yDPURp05PY++UBxApBZ8NTiFz8KHxXsH4FR7OLfqML+gr8TS/nfHk2peNSEN75jO/OAs4=
before_build:
- cmd: nuget restore "%APPVEYOR_BUILD_FOLDER%\TermReader.sln"
- cmd: nuget restore "%APPVEYOR_BUILD_FOLDER%\TermRead.sln"
build:
verbosity: minimal
after_build:
- cmd: >-
7z a devbuild.zip "%APPVEYOR_BUILD_FOLDER%\TermReader\bin\Debug\"
7z a devbuild.zip "%APPVEYOR_BUILD_FOLDER%\TermRead\bin\Debug\"
7z a devbuild-console.zip "%APPVEYOR_BUILD_FOLDER%\TermReader.Demo\bin\Debug\"
7z a devbuild-console.zip "%APPVEYOR_BUILD_FOLDER%\TermRead.Demo\bin\Debug\"
7z a devbuild-tests.zip "%APPVEYOR_BUILD_FOLDER%\TermReader.Tests\bin\Debug\"
7z a devbuild-tests.zip "%APPVEYOR_BUILD_FOLDER%\TermRead.Tests\bin\Debug\"
artifacts:
- path: devbuild.zip
name: Development build of TermReader
name: Development build of TermRead
- path: devbuild-console.zip
name: Development build of TermReader - Console test app
name: Development build of TermRead - Console test app
- path: devbuild-tests.zip
name: Development build of TermReader - Unit tests
- path: TermReader/bin/debug/*.nupkg
name: Development build of TermRead - Unit tests
- path: TermRead/bin/debug/*.nupkg
deploy:
- provider: NuGet
server: https://www.nuget.org/api/v2/package
Expand Down

0 comments on commit 91cec0c

Please sign in to comment.