Downloads:
24,102
Downloads of v 1.9.0-beta10:
118
Last Update:
20 Sep 2020
Package Maintainer(s):
Software Author(s):
- OmniSharp & .NET Foundation
Tags:
lsp ls .net dotnet dotnetcore asp.net mono foss ide- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
OmniSharp - Roslyn-based C# Language Server
This is a prerelease version of OmniSharp - Roslyn-based C# Language Server.
- 1
- 2
- 3
1.9.0-beta10 | Updated: 20 Sep 2020
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
24,102
Downloads of v 1.9.0-beta10:
118
Maintainer(s):
Software Author(s):
- OmniSharp & .NET Foundation
OmniSharp - Roslyn-based C# Language Server 1.9.0-beta10
This is a prerelease version of OmniSharp - Roslyn-based C# Language Server.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by OmniSharp & .NET Foundation. The inclusion of OmniSharp & .NET Foundation trademark(s), if any, upon this webpage is solely to identify OmniSharp & .NET Foundation goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install OmniSharp - Roslyn-based C# Language Server, run the following command from the command line or from PowerShell:
To upgrade OmniSharp - Roslyn-based C# Language Server, run the following command from the command line or from PowerShell:
To uninstall OmniSharp - Roslyn-based C# Language Server, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download omnisharp --internalize --version=1.9.0-beta10 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade omnisharp -y --source="'INTERNAL REPO URL'" --version="'1.9.0-beta10'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade omnisharp -y --source="'INTERNAL REPO URL'" --version="'1.9.0-beta10'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install omnisharp
win_chocolatey:
name: omnisharp
version: '1.9.0-beta10'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'omnisharp' do
action :install
source 'INTERNAL REPO URL'
version '1.9.0-beta10'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller omnisharp
{
Name = "omnisharp"
Version = "1.9.0-beta10"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'omnisharp':
ensure => '1.9.0-beta10',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
Introduction
OmniSharp is a .NET development platform based on Roslyn workspaces. It provides project dependencies and C# language services to various IDEs and plugins.
OmniSharp is built with the .NET Core SDK on Windows and Mono on OSX/Linux. It targets the net472 target framework. For platforms other than Windows, OmniSharp ships with an embedded Mono which is based on version 5.18.0, includes MSBuild 16.3.0 and is provisioned during the build script. If Mono is globally installed on the system, OmniSharp will prefer it over the embedded version, however version >=6.4.0 is required (the lowest version with at least MSBuild 16.3.0).
Configuration
OmniSharp provides a rich set of hierarchical configuration options, controlled via startup arguments, environment variables and omnisharp.json
file. For more details please visit the Configuration Options section of the wiki.
License
Copyright © .NET Foundation, and contributors.
OmniSharp is provided as-is under the MIT license. For more information see LICENSE.
.NET Foundation
This project is supported by the .NET Foundation.
Notice: This is a community maintained package that is not maintained by the OmniSharp project or The .NET Foundation.
MIT License
Copyright (c) .NET Foundation and Contributors All Rights Reserved
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/OmniSharp/omnisharp-roslyn, enter to releases and download from there.
x64: https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v1.9-beta10/omnisharp-win-x64-net451.zip
to download the zip files. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum64: 246bb27d3481faec478f22fbb87cd9de74697af6dbbf2d5e9058a3702550056072245cb15df62a2ec405d66fa104b6b941c2f5aaa9223dc9ba1994e567c586db
File 'LICENSE.txt' obtained from:
https://github.com/OmniSharp/omnisharp-roslyn/blob/v1.9-beta10/license.md
md5: 64F24B7DF9C8A9581EF15440EA403C2F | sha1: 896191034A0D3EB9F7E6D89B4223FA064E6F3819 | sha256: 32B8E9777DC476713CF3623DAC3F4D0BA32B7672A6D185D2223C3ABEE069D9F8 | sha512: 246BB27D3481FAEC478F22FBB87CD9DE74697AF6DBBF2D5E9058A3702550056072245CB15DF62A2EC405D66FA104B6B941C2F5AAA9223DC9BA1994E567C586DB
Log in or click on link to see number of positives.
- omnisharp.1.9.0-beta10.nupkg (e5a2f6e7b1ad) - ## / 63
- omnisharp-win-x64-net451.zip (32b8e9777dc4) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Copyright © 2015 - 2020 OmniSharp Copyright © 2020 .NET Foundation
-
- nuget.commandline (≥ 5.7.0)
- dotnet4.5.1 (≥ 4.5.1.20140606)
Ground Rules:
- This discussion is only about OmniSharp - Roslyn-based C# Language Server and the OmniSharp - Roslyn-based C# Language Server package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or OmniSharp - Roslyn-based C# Language Server, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.