Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ReSharper.FSharp/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project>
<Sdk Name="JetBrains.Build.VersionLockFileTargets" Version="0.0.4" />

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.fsproj' and '$(Configuration)'!='Release'">
<DefineConstants>TRACE;DEBUG;JET_MODE_ASSERT</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.fsproj' and '$(Configuration)'=='Release'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>

Expand Down
1 change: 1 addition & 0 deletions rider-fsharp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ dependencies {
bundledModule("intellij.platform.langInjection")
bundledPlugin("org.jetbrains.plugins.textmate")
bundledPlugin("rider.intellij.plugin.appender")
bundledPlugin("com.intellij.moduleSet.structureView")
bundledModule("intellij.resharper.assist")
instrumentationTools()
// TODO: Temporary I hope hope hope
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import com.intellij.openapi.project.Project
import com.intellij.openapi.util.JDOMExternalizerUtil
import com.intellij.openapi.vfs.VirtualFile
import com.jetbrains.rdclient.util.idea.toVirtualFile
import com.jetbrains.rider.debugger.DotNetAsyncRunnableConfiguration
import com.jetbrains.rider.debugger.IRiderDebuggable
import com.jetbrains.rider.ideaInterop.fileTypes.fsharp.FSharpScriptFileType
import com.jetbrains.rider.plugins.fsharp.FSharpBundle
import com.jetbrains.rider.run.IRiderRunnable
import com.jetbrains.rider.run.configurations.DotProfilingAwareRunConfiguration
import com.jetbrains.rider.run.configurations.RiderAsyncRunConfiguration
import org.jdom.Element
Expand All @@ -25,7 +25,7 @@ class FSharpScriptConfiguration(name: String,
project,
factory,
{ FSharpScriptConfigurationEditor(it) },
FSharpScriptExecutorFactory()), DotNetAsyncRunnableConfiguration, IRiderDebuggable, DotProfilingAwareRunConfiguration {
FSharpScriptExecutorFactory()), IRiderRunnable, IRiderDebuggable, DotProfilingAwareRunConfiguration {
companion object {
private const val SCRIPT_PATH = "SCRIPT_PATH"
}
Expand Down
1 change: 1 addition & 0 deletions rider-fsharp/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<depends>com.intellij.modules.rider</depends>
<depends>rider.intellij.plugin.appender</depends>
<depends>com.intellij.rider.rdclient.spellchecker</depends>
<depends>com.intellij.moduleSet.structureView</depends>

<content>
<module name="intellij.rider.plugins.fsharp.injections" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<module name="intellij.libraries.gson"/>
<module name="intellij.libraries.kotlin.reflect"/>
<module name="intellij.libraries.kotlinx.coroutines.core"/>
<module name="intellij.libraries.teamcity.service.messages"/>
<module name="intellij.platform.analysis"/>
<module name="intellij.platform.analysis.impl"/>
<module name="intellij.platform.codeStyle"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Opened
...
-Packages
coverlet.collector/6.0.4
FSharp.Core/10.0.100
FSharp.Core/10.1.202
Microsoft.NET.Test.Sdk/17.14.1
xunit.runner.visualstudio/3.1.4
xunit/2.9.3
Expand Down Expand Up @@ -39,6 +39,7 @@ Project [Name:UnitTestProject, GUID:GUID]
Child items:
Folder [Name:net10.0, IsHidden:true]
Child items:
ProjectFileImpl(Path : ILLink.Substitutions.xml)[Hidden EMBEDDEDRESOURCE Properties:LogicalName=ILLink.Substitutions.xml]
ProjectFileImpl(Path : UnitTestProject.AssemblyInfo.fs)[Hidden COMPILE Properties:CompileOrder=CompileBefore]
ProjectFileImpl(Path : xunit.abstractions.dll (.nuget/packages))[Hidden NONE ]
ProjectFileImpl(Path : xunit.runner.visualstudio.testadapter.dll (.nuget/packages))[Hidden NONE ]
Expand Down
Loading