You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
It could indeed be that you can't reach the resource on the internet. It's getting the list of available versions from the Nuget server that you have configured in your Visual Studio installation.
I haven't seen that happen before, but I'll certainly look into it.
and 3) will be fixed in the next release. I can't reproduce your first issue, though.
For future reference, please report issues separately, since they may be solved separately. It just makes it easier for developers to both track the issues and to find how they were fixed historically. Thanks.
msawczyn
added
released
Issue is resolved in a current release
and removed
pending release
Issue is resolved in the current codebase, will be published with the next release
labels
Sep 30, 2019
hi, i found some issue in design surface.
why cause this?
it depends on some urls i can't visit?
i have a entity named Sample.
then using add properties via code add the following code with initial value default for Propertity Name
public Int32 Id!; public String Name = "default";
generated code like below:
double quotation marks with the default value
public partial class Sample
{
partial void Init();
}
3.Adding Properties via Code can't set min length of string
when i type the code in add properties as code like below.
public Int32 Id!; public String[10-40] Name;
then save and open the add properties via code again.
it show the code like below
public Int32 Id!; public String[40] Name;
The text was updated successfully, but these errors were encountered: