-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EF Core Tools Bug Bash #7358
Comments
Exploratory testing on Ubuntu MATE 16.04 looks good. I targeted:
There was one external issue with |
Testing netcoreapp1.1, cross-targeting & standalone apps looks good. Interestingly, making an app standalone only affects publish now, so we can stop worrying about when working on our tools. |
Found one: Unknown commands just show help without erroring. #7386 |
Tests UWP app with 1.1 on 32-bit Windows 10:
|
Just a quick question: I'm testing on a mac with VS Code. Is it OK to use |
@iwaszko Yes. There is only one version of We are considering releasing both a |
Thanks, using |
W00t! Thanks for helping us bash. |
For some reason, when running Heres my cs proj:
|
Issue with web template auth Individual on Lubuntu 16.04
Steps to reproduce:
Everything fine so far. But when testing http://localhost:5000/Account/Register creating a user throws an error:
This error tells me to create the database. But
|
@MarkusEgle It looks like that template doesn't include the <ItemGroup>
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet"
Version="1.0.0-msbuild3-final" />
</ItemGroup> |
But @mlorbetske fixed it in dotnet/templating@fbec36e |
@bricelam Yes... perfect now the template is working on linux including logging in that stores to the sqlite database |
Just throwing in my experience, I am using cli 1.0.0-rc4-004777 and used the following command
but unfortunately I end up with this in .csproj <PackageReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet">
<Version>1.0.0-msbuild3-final</Version>
</PackageReference> when it would be cool to end up with <ItemGroup>
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet"
Version="1.0.0-msbuild3-final" />
</ItemGroup> |
@jamiewest We have the appropriate metadata in our nupkg, but NuGet hasn't implemented the logic to handle it yet. This is a known issue, thanks! |
I have found at least 2 blocking defects in |
With the latest github release https://dotnetcli.blob.core.windows.net/dotnet/Sdk/rel-1.0.0/dotnet-dev-ubuntu.16.04-x64.latest.tar.gz
the template
When I "correct" it to:
it works, otherwise I will get
|
@MarkusEgle We're gearing up for the RTM release. If you add this to your <configuration>
<packageSources>
<add key="msbuildtools"
value="https://dotnet.myget.org/F/msbuildtools/api/v3/index.json" />
</packageSources>
</configuration> |
I'm going to go ahead and close this issue. As far as we can tell, the 1.0.0-msbuild3-final tools have been considerably more stable for people. There are a handful of minor fixes and enhancements going into 1.0.0. Please continue to file issues for anything you find. |
hi this is my project.json and `{ "tools": { "frameworks": { "buildOptions": { "runtimeOptions": { "publishOptions": { "scripts": { "tooling": { |
I just installed System.Diagnostics.DiagnosticSource and System.Collections.Immutable from the NuGet Package Manager, and everything is working :) |
All the work we've done since last October finally shipped in version
1.0.0-msbuild3-final
of the tools. There has been significant changes to the code including support for the new MSBuild-based (and CPS-based in VS 2017) projects. We would love to get as many people testing this out as we can (both team and community members alike).If you find anything that isn't working as expected, please submit an issue and (optionally) link to it from here.
What to use
With Visual Studio 2017 RC or .NET Core SDK 1.0 RC3, install the PMC tools by installing the
Microsoft.EntityFrameworkCore.Tools
package (like you would any other NuGet package). Use either version1.0.0-msbuild3-final
or1.1.0-msbuild3-final
depending on your version of the EF Core runtime.Install
dotnet ef
by adding the following to your projects.Things to test
Xamarin,.NET NativeARMRuntime Component,.xprojdotnet ef
,ef.exe
Note:
Struckthroughitems are negative scenarios that should give good error messages.dotnet ef
The text was updated successfully, but these errors were encountered: