VS.Net Becomes Unstable With R#2.0 Beta?
First, is this the correct forum for Beta feedback?
If so, I encountered a significant problem trying to use R#2.0 Beta with VS 2003. VS started hanging and then crashed with an out of memory error. The second time this happened, I uninstalled 2.0 and went back to 1.5.1 and now my keymap is all messed up.
I haven't used any of the EAP builds and everything had been relatively stable since I first installed 1.5.1 several months ago. If it matters, my solution has one pretty large project (a C# DLL) and uses SourceSafe.
Please sign in to leave a comment.
i have the same problem with the reshaper 2.0 beta. After 1 or 2 hours of coding in VS, the whole IDE crashs. But always during compilation, not while typing.
Thats very annoying and makes r#2 quick useless
Do you have any XSD schemas in your solution?
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"Charles Dale" <no_reply@jetbrains.com> wrote in message
news:12713479.1146142702342.JavaMail.itn@is.intellij.net...
>
>
Yes. One, but I've never touched it. Here it is:
<?xml version="1.0" standalone="yes" ?>
<xs:schema id="dataset" targetNamespace="http://www.tempuri.org/dataset.xsd" xmlns:mstns="http://www.tempuri.org/dataset.xsd"
xmlns="http://www.tempuri.org/dataset.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:element name="dataset" msdata:IsDataSet="true">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="Maintenance">
<xs:complexType>
<xs:sequence>
<xs:element name="Earliest" msdata:ReadOnly="true" type="xs:dateTime" minOccurs="0" />
<xs:element name="Latest" msdata:ReadOnly="true" type="xs:dateTime" minOccurs="0" />
<xs:element name="TableName" type="xs:string" minOccurs="0" />
<xs:element name="Count" msdata:ReadOnly="true" type="xs:int" minOccurs="0" />
<xs:element name="MaxNumber" type="xs:int" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
Yes, quite a lot of them.
And just 1minute before, VS crahed also while typing. Which means, I lost all the code i had written since the last save...
So you've just worked with regular c# files, and after a while you've got
OutOfMemory?
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"Charles Dale" <no_reply@jetbrains.com> wrote in message
news:16087537.1146144629237.JavaMail.itn@is.intellij.net...
>
Yes, that's pretty much how it happened. Just standard edit-compile-debug with a mix of plain C# files and Windows form classes. I do a lot of stepping through code and using the Quick Watch window to inspect objects.