Open spapaseit opened 7 years ago
At the moment there's no way to start wallaby without a Visual Studio project file. So as a workaround for now, you may create one (and add it to the .gitignore
if no one is using it).
That will work, thanks!
@ArtemGovorov Will this be on the roadmap in the foreseeable future? We are working in a mixed teams with about 12+ developers, some work in VS Code and some in VS 2017. The .gitignore workaround won't work practically if the VS 2017 have to manage the content of the .csproj file individually.
@rdkleine Yes, we are already working on it.
@rdkleine Another workaround until it is supported is to use .NET Core project file with glob patterns (so the paths will not have to be maintained/managed).
@ArtemGovorov thanks! will try that.
..update: Works!
Would you be kind enough to post an example, @rdkleine?
@LayZeeDK changed company (contractor) in de meantime but a .net core project file would look (somewhat) like the following:
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" />
</ItemGroup>
</Project>
There are no file references in the project file.
Issue description or question
I'm working on an Aurelia project that has no solution file; it's just a folder, but I user Visual Studio 2017 as code editor so that I can benefit from ReSharper.
Wallaby works fine and all tests pass when using VS Code, but when opening a folder in VS2017 I have no way to start Wallaby. The shortcuts don't work and the
Start Wallaby
option on the context menu of thewallaby.js
file is not present.Is there a way to start Wallaby when working with folders in Visual Studio 2017?
Wallaby.js configuration file
Code editor or IDE name and version
Visual Studio 2017
OS name and version
Windows 10