rider

Cotura.Fody Not Working In JetBrains Rider EAP

时光总嘲笑我的痴心妄想 提交于 2019-12-08 06:36:09
问题 I'm working on a project, and it uses a few libraries (RestSharp, Newtonsoft.Json, CsQuery) and I didn't want to use the exe with all the dlls in the same directory, so I also installed Costura.Fody, and that worked when I used Visual Studio, but now I'm using JetBrains Rider EAP, and the output exe file does not include the embedded dlls/ If I move it, It crashes saying something like "Cant load CsQuery" etc. I'm running a 64 bit version of Windows 10, Visual Studio 2015 Community Update 3,

JetBrains Rider targets 4.5 framework and no option to switch to 4.7

瘦欲@ 提交于 2019-12-06 02:30:16
问题 Basically, when trying to add NuGet package which is not supporting older frameworks getting the error. However in project configuration only 4.5 is available. During the project creation no option to select the target is present. Is there any way to configure it properly? 回答1: I haven't found out how to set up .NET framework globally but here is a convenient way: 来源: https://stackoverflow.com/questions/45571086/jetbrains-rider-targets-4-5-framework-and-no-option-to-switch-to-4-7

Project Rider - Break on Exception

狂风中的少年 提交于 2019-12-05 17:21:25
问题 I can't find the option in JetBrains Project Rider to "Break on Exception". Where I would normally add an exception breakpoint in IntelliJ, I see this: 回答1: Break on specific exceptions is not implemented yet. Now Rider can break only on unhandled exceptions. Will come soon. 回答2: There are two ways to do this. Break on all exceptions Go to Run | View Breakpoints... . Click the green + icon. Select Stop on all .NET exceptions . You can then modify the breakpoint: Break on a specific exception

JetBrains Rider C# | Windows Form UI [closed]

北城以北 提交于 2019-12-05 10:37:19
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I've developed a console application using Rider IDE by JetBrains. What I wanted to know is if there's a way of build an UI using Rider IDE? Or a plugin which creates the basic setup for an app with UI? Q: Are you also developing a GUI designer like in Visual Studio for WinForms, WPF etc? A: Yes, we’re looking at how we can support at least previewing WinForms/WPF/Xamarin Forms. We’re not sure we’re going to

IDEA Rider 2019.2(1)

时光怂恿深爱的人放手 提交于 2019-12-05 09:03:16
IDEA Rider2019.2月版本相比之前2018版本多了新功能,又支持Edit and Continue,所以准备试用一段时间,最喜欢它的两个功能 1、占内存小,重构功能强大,Resharper插件占资源较多,会拖慢整个电脑,毕竟不是亲生的。 2、强制运行跳转到某个位置功能,vs需要手动拖,不方便,并且catch了还能指定跳转,vs catch之后就不能再从上面开始了,必须从新执行。 3、错误提示功能强大,但也有弊端,不想看的错误提示一堆,强迫症不能忍。 4、IDEA和其它同类工具操作习惯一致,用了这个,写Android,Java应用不至于不习惯。 来源: https://www.cnblogs.com/zhaogaojian/p/11917861.html

Deepin 下 使用 Rider 开发 .NET Core

╄→гoц情女王★ 提交于 2019-12-04 17:41:54
目录 Deepin 下 使用 Rider 开发 .NET Core 安装 Rider 安装 .NET Core SDK 体验开发 Deepin 下 使用 Rider 开发 .NET Core 国产的 Deepin 不错,安利一下。 Deepin 用了也有一两年,也只是玩玩,没用在开发上面。后来 Win10 不太清真了,就想着能不能到 Deepin下撸码。要搞开发,首先少不了 IDE,VS2019 用不来,Vs Code 太复杂、麻烦,后来发现了 Rider 这个神器,可是 Rider 是英文界面,笔者的英文是渣渣的。结果在 Windows 下 使用 Rider 开发一段时间后, 已经熟悉了 Rider ,于是计划后面迁移到 Deepin 下开发 .NET Core 。笔者装了双系统 Windows10 + Deepin 15。 安装 Rider Rider 的Linux 下载地址 http://www.jetbrains.com/rider/download/#section=linux 下载压缩包后,将压缩包解压,打开 bin 目录,在目录下打开终端,运行 sh rider.sh 或者直接点击 rider.sh 文件,选择执行即可。 之后会弹出安装界面。 根据提示一步步安装。 最后会要求输入账号密码或者激活码激活 Rider 。 我这个是高材生的福利~你们没有的话就用

JetBrains Rider targets 4.5 framework and no option to switch to 4.7

依然范特西╮ 提交于 2019-12-04 08:26:08
Basically, when trying to add NuGet package which is not supporting older frameworks getting the error. However in project configuration only 4.5 is available. During the project creation no option to select the target is present. Is there any way to configure it properly? I haven't found out how to set up .NET framework globally but here is a convenient way: 来源: https://stackoverflow.com/questions/45571086/jetbrains-rider-targets-4-5-framework-and-no-option-to-switch-to-4-7

Project Rider - Break on Exception

我是研究僧i 提交于 2019-12-04 02:28:56
I can't find the option in JetBrains Project Rider to "Break on Exception". Where I would normally add an exception breakpoint in IntelliJ, I see this: Break on specific exceptions is not implemented yet. Now Rider can break only on unhandled exceptions. Will come soon. There are two ways to do this. Break on all exceptions Go to Run | View Breakpoints... . Click the green + icon. Select Stop on all .NET exceptions . You can then modify the breakpoint: Break on a specific exception Either use: Run | Stop on exception... Run | View Breakpoints... . Click the green + icon. Select .NET exception

JetBrains Rider C# | Windows Form UI [closed]

匿名 (未验证) 提交于 2019-12-03 01:23:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I've developed a console application using Rider IDE by JetBrains. What I wanted to know is if there's a way of build an UI using Rider IDE? Or a plugin which creates the basic setup for an app with UI? 回答1: Q: Are you also developing a GUI designer like in Visual Studio for WinForms, WPF etc? A: Yes, we’re looking at how we can support at least previewing WinForms/WPF/Xamarin Forms. We’re not sure we’re going to make it for the first release though. JetBrains already published the answer, https://blog.jetbrains.com/dotnet/2016/11/28

Failed to load Xamarin Forms project with .NET Standard 2.0 Lib in Rider

孤人 提交于 2019-11-30 13:57:24
TL;DR; Are Xamarin Forms projects with .NET Standard library 2.0 supported in Rider? I created a small Xamarin project in Visual Studio 2017.3 (Windows) using the blank forms app multiplatform wizard. Microsoft dropped the the option to create a PCL recently in the Windows version of VS and provides .NET Standard only. Thus I selected that one. Now I wanted to try out development on Mac directly using Rider so that I don't have to run a Windows VM (I really like Resharper so I am bound to Windows on my Mac) When I open this project in Rider on Mac OS, it throws a bunch of errors and it looks