This is a migrated thread and some comments may be shown as answers.

JustCode (Beta) Overview

9 Answers 467 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Telerik Admin
Top achievements
Rank 1
Iron
Telerik Admin asked on 17 Nov 2009, 07:55 PM
JustCode (Beta) is an agile development add-in for Visual Studio 2005 and 2008 that boosts .NET development productivity by providing blazing fast solution wide on-the-fly code analysis and error checking, smart code navigation and refactoring features. With a cross-language engine, JustCode provides features for C#, VB.NET, ASP.NET, XAML, JavaScript and HTML and supports multi-language solutions. 

See full list of benefits and features. 
Compare JustCode with Visual Studio Features 
See full Feature Matrix

9 Answers, 1 is accepted

Sort by
0
Phil
Top achievements
Rank 2
answered on 23 Nov 2009, 02:24 PM
I'm not sure about "Blazing Fast", I have installed the Beta and it has rendered my Visual Studio unusable. It is reporting 3840 errors in a solution that builds without errors, and has slowed the entire system (not just Visual Studio) to a crawl.

I hope the uninstall works.


PS It did, uninstalled JustCode and my system is working again.
0
Chris
Telerik team
answered on 23 Nov 2009, 03:25 PM
Hello Phil,
Sorry to hear that you had such experience with JustCode.
Should you decide to give JustCode a second chance you could try some of the following steps:

- We noticed that on some machines when there're lots of errors reported by JustCode, Visual Studio becomes less responsive. If these errors are real errors (for example a lot of HTML errors with which you can live) you can just ignore them all from the JustCode menu. If they're not real errors you could first report them to us or at least the most repetitive ones. It won't take you more than a minute, just code to some errors, press Alt + Enter and then select "Report Good Code Red". This way you'll help us fix the problems so that next time you don't get errors for this code.

- You could also make sure that the "JustCode Error List" window is closed or hidden while you're typing code in VS so that the error list is not populated constantly with all the errors and warnings as you type.
Moreover we'll also make some optimizations so that JustCode performs better when there're lots of errors in the solution.

- You could increase the interval at which JustCode checks the solution for errors. The default value is 50ms. You could go to JustCode options / General - "Code analysis refresh interval" and try for example 500ms or 1000ms.

Once again sorry for the inconvenience and thanks for trying JustCode.

Best wishes,
Chris
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Phil
Top achievements
Rank 2
answered on 23 Nov 2009, 03:38 PM
Thanks for the quick response.

The 3840 "errors" seemed to relate to telerik controls, and I don't think JustCode could figure out that the telerik controls were coming from the GAC - the dll's are not in the project. Every reference to a telerik control was flagged as an "error".

Might be a quick fix?

0
Chris
Telerik team
answered on 23 Nov 2009, 04:39 PM

Hi Phil,
Hmm, we support referencing GAC assemblies, this is quite a fundamental feature. Maybe there's some problem related to the way the assemblies are referenced. Could you please send us your web.config file or at least the sections in it regarding the Telerik WebUI controls?

Thanks a lot in advance!

Kind regards,

Chris
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Phil
Top achievements
Rank 2
answered on 23 Nov 2009, 05:10 PM
<?xml version="1.0"?>  
<configuration> 
    <!-- --> 
    <configSections> 
        <sectionGroup name="elmah">  
            <section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah"/>  
            <section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah"/>  
            <!--    <section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah"/>--> 
            <section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah"/>  
        </sectionGroup> 
    </configSections> 
    <!-- --> 
    <!-- Connection Strings  --> 
    <!-- --> 
    <connectionStrings> 
        <clear/> 
        <add name="iDespatch" connectionString="iDespatch"/>  
        <add name="iTrip" connectionString="iDespatch"/>  
    </connectionStrings> 
    <!-- --> 
    <!--  Error Handling --> 
    <!-- --> 
    <elmah> 
        <errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/Elmah"/>  
        <security allowRemoteAccess="yes"/>  
        <!--    <errorMail from="elmah@idespatch.net" to="vv@test.com" subject="iDespatch error logged (dev!)" async="true" smtpPort="25" smtpServer="mail.nbaconsultants.co.uk" userName="philshort" password="psnbamp1"/> --> 
    </elmah> 
    <!-- --> 
    <!-- Define pages which are accessible to unauthorised users (apart from the login page, natch. --> 
    <!-- --> 
    <location path="css/iDespatch.css">  
        <system.web> 
            <authorization> 
                <allow users="?"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="images">  
        <system.web> 
            <authorization> 
                <allow users="?"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="consignment.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Traffic"/>  
                <allow roles="Admin"/>  
                <allow roles="User"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="manifest.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Traffic"/>  
                <allow roles="Admin"/>  
                <allow roles="User"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="recovery.aspx">  
        <system.web> 
            <authorization> 
                <allow users="?"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="trip.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Traffic"/>  
                <allow roles="Admin"/>  
                <allow roles="User"/>  
                <allow roles="Tracker"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="manifestout.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Traffic"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="dash.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="penske.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="carrierexport.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="gardner"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="customerexport.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="ConsignmentsPrint.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="ConsignmentEnquiry.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Supervisor"/>  
                <allow roles="Admin"/>  
                <allow roles="Internal"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="Telerik.RadUploadProgressHandler.aspx">  
        <system.web> 
            <authorization> 
                <allow users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="elmah.axd">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="D3Web.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="eventlog.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="errorlog.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="viewcache.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="userlist.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <location path="showdata.aspx">  
        <system.web> 
            <authorization> 
                <deny users="?"/>  
                <allow roles="Admin"/>  
                <deny users="*"/>  
            </authorization> 
        </system.web> 
    </location> 
    <!-- --> 
    <!-- rest --> 
    <!-- --> 
    <system.web> 
        <customErrors mode="Off"/>  
        <!-- --> 
        <trace enabled="true" pageOutput="false" traceMode="SortByTime" requestLimit="999"/>  
        <!-- --> 
        <httpHandlers> 
            <add path="Telerik.RadUploadProgressHandler.aspx" verb="*" type="Telerik.WebControls.RadUploadProgressHandler, RadUpload.Net2, Version=2.4.7.0, Culture=neutral, PublicKeyToken=B4E93C26A31A21F0"/>  
            <add path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=2.8.8.723, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" validate="true"/>  
            <add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah"/>  
        </httpHandlers> 
        <!-- --> 
        <httpModules> 
            <!-- This next httpModule does save a worthwhile amount of bandwidth, but unfortunately also clobbers downloaded PDF files.  
             Commented out until this issue is resolved. PS 3/12/07  
            <add type="WhitespaceModule" name="WhitespaceModule"/>--> 
            <add name="RadUploadModule" type="Telerik.WebControls.RadUploadHttpModule, RadUpload.Net2, Version=2.4.7.0, Culture=neutral, PublicKeyToken=B4E93C26A31A21F0"/>  
            <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>  
            <add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah"/>  
            <add name="MsAjaxDeltaErrorLog" type="Elmah.MsAjaxDeltaErrorLogModule, Elmah"/>  
        </httpModules> 
        <!-- --> 
        <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="60"/>  
        <!-- --> 
        <globalization uiCulture="en-GB" culture="en-GB"/>  
        <!-- --> 
        <!-- The <authentication> section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user. --> 
        <!-- --> 
        <siteMap defaultProvider="XmlSiteMapProvider" enabled="true">  
            <providers> 
                <add name="XmlSiteMapProvider" description="Default SiteMap provider." type="System.Web.XmlSiteMapProvider " siteMapFile="Web.sitemap" securityTrimmingEnabled="true"/>  
            </providers> 
        </siteMap> 
        <!-- --> 
        <authentication mode="Forms"/>  
        <!-- --> 
        <authorization> 
            <allow roles="NBA"/>  
            <allow roles="Admin"/>  
            <allow roles="Operator"/>  
            <allow roles="Supervisor"/>  
            <allow roles="Traffic"/>  
            <allow roles="Customer"/>  
            <allow roles="Carrier"/>  
            <allow roles="Manager"/>  
            <allow roles="Tracker"/>  
            <allow roles="Finance"/>  
            <allow roles="User"/>  
            <deny users="?"/>  
        </authorization> 
        <!-- --> 
        <membership defaultProvider="D3MembershipProvider">  
            <providers> 
                <clear/> 
                <add name="D3MembershipProvider" type="D3Providers.NBA.D3MembershipProvider" description="D3 Membership Provider" connectionStringName="iDespatch" applicationName="iDespatch" membershipFile="Membership"/>  
            </providers> 
        </membership> 
        <!-- --> 
        <roleManager defaultProvider="D3RoleProvider" enabled="true" cacheRolesInCookie="true">  
            <providers> 
                <clear/> 
                <add name="D3RoleProvider" type="D3Providers.NBA.D3RoleProvider" description="D3 Role Provider" connectionStringName="iDespatch" applicationName="iDespatch" writeExceptionsToEventLog="true" rolesFile="Roles" usersInRolesFile="UsersInRoles"/>  
            </providers> 
        </roleManager> 
        <!-- --> 
        <profile defaultProvider="D3ProfileProvider">  
            <providers> 
                <clear/> 
                <add name="D3ProfileProvider" type="D3Providers.NBA.D3ProfileProvider" description="D3 Profile Provider" connectionStringName="iDespatch" profileFile="Profiles"/>  
            </providers> 
            <properties> 
                <add name="Account" type="String" serializeAs="String"/>  
                <add name="AccountName" type="String" serializeAs="String"/>  
                <add name="printAsPDF" type="Boolean" defaultValue="true"/>  
                <add name="DashAllowed" type="Boolean" defaultValue="true"/>  
                <add name="DashConfig" type="String" defaultValue="Pie,0,cDepot,Charge,0|Pie,0,dDepot,Charge,0|Bar, 0,chargee.name,Charge,0|Pie,-1,cDepot,Charge,0|Pie,-1,dDepot,Charge,0|Bar,-1,chargee.name,Charge,0"/>  
                <add name="DashStartRelativeDays" type="Integer" defaultValue="364"/>  
                <add name="EnquiryOnly" type="Boolean" defaultValue="false"/>  
                <add name="Haulier" type="Boolean" defaultValue="false"/>  
                <add name="ShowReleaseAndPrint" type="Boolean" defaultValue="true"/>  
                <add name="ReleaseAndPrint" type="Boolean" defaultValue="false"/>  
                <add name="Depot" type="String" serializeAs="String" defaultValue="old"/>  
                <add name="smarties" type="Boolean" defaultValue="false"/>  
                <add name="Fields" type="String" defaultValue="conor cons_ref colldate conee postcode quantity type weight instruction reference volume zone service dely ddepot fromPostcode address bookb tailt hazardh"/>  
                <add name="TrunkString" type="String" serializeAs="String"/>  
                <add name="TrunkOrder" type="String" serializeAs="String"/>  
                <add name="ExportWrapper" type="String" serializeAs="String"/>  
                <add name="ExportSeperator" type="String" serializeAs="String"/>  
                <add name="DateFormat" type="String" serializeAs="String" defaultValue="ddd dd MMM yyyy"/>  
                <add name="ShowHeader" type="Boolean" serializeAs="String" defaultValue="True"/>  
                <add name="LabelType" type="String" serializeAs="String" defaultValue="rptLabel102"/>  
                <add name="daysOffset" type="String" serializeAs="String" defaultValue="0"/>  
            </properties> 
        </profile> 
        <!-- --> 
        <compilation debug="true" strict="false" explicit="true">  
            <assemblies> 
                <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>  
                <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>  
                <add assembly="System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>  
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>  
                <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>  
                <add assembly="Accessibility, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
                <add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="Microsoft.VisualC, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>  
                <add assembly="Telerik.Reporting, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>  
                <add assembly="Telerik.Reporting.Interfaces, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>  
                <add assembly="Telerik.Reporting.Processing, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>  
                <add assembly="Telerik.ReportViewer.WebForms, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>  
                <add assembly="RadAjax.Net2, Version=1.8.7.0, Culture=neutral, PublicKeyToken=3F7B438D1C762D0B"/>  
                <add assembly="RadCalendar.Net2, Version=2.2.7.0, Culture=neutral, PublicKeyToken=A1432CD341173140"/>  
                <add assembly="RadChart.Net2, Version=4.1.5.0, Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/>  
                <add assembly="RadComboBox.Net2, Version=2.8.7.0, Culture=neutral, PublicKeyToken=175E9829B585F1F6"/>  
                <add assembly="RadDock.Net2, Version=1.8.9.0, Culture=neutral, PublicKeyToken=6D24AB6221F3F350"/>  
                <add assembly="RadEditor.Net2, Version=7.3.5.0, Culture=neutral, PublicKeyToken=852C9EB6525C1B53"/>  
                <add assembly="RadGrid.Net2, Version=5.1.5.0, Culture=neutral, PublicKeyToken=EC87BC2939EC45DF"/>  
                <add assembly="RadInput.Net2, Version=2.1.7.0, Culture=neutral, PublicKeyToken=A1432CD341173140"/>  
                <add assembly="RadMenu.Net2, Version=4.4.7.0, Culture=neutral, PublicKeyToken=BBE59A8AD3533E68"/>  
                <add assembly="RadPanelbar.Net2, Version=4.3.7.0, Culture=neutral, PublicKeyToken=E0D16F6F4C7E05DE"/>  
                <add assembly="RadRotator.Net2, Version=2.7.7.0, Culture=neutral, PublicKeyToken=DE81A6506E5A433A"/>  
                <add assembly="RadSpell.Net2, Version=3.2.7.0, Culture=neutral, PublicKeyToken=B5DAD7BF2BF594C2"/>  
                <add assembly="RadSplitter.Net2, Version=1.3.7.0, Culture=neutral, PublicKeyToken=B4E93C26A31A21F0"/>  
                <add assembly="RadTabStrip.Net2, Version=3.6.7.0, Culture=neutral, PublicKeyToken=A87324B017CA21CE"/>  
                <add assembly="RadToolbar.Net2, Version=1.6.7.0, Culture=neutral, PublicKeyToken=58E92726EB339B98"/>  
                <add assembly="RadTreeView.Net2, Version=6.3.7.0, Culture=neutral, PublicKeyToken=DBD98E0FEFF9F06B"/>  
                <add assembly="RadUpload.Net2, Version=2.4.7.0, Culture=neutral, PublicKeyToken=B4E93C26A31A21F0"/>  
                <add assembly="RadWindow.Net2, Version=1.9.7.0, Culture=neutral, PublicKeyToken=A3055F084732468E"/>  
                <add assembly="C1.Win.C1FlexGrid, Version=2.1.20031.104, Culture=neutral, PublicKeyToken=C9C7AD9C0A5706C9"/>  
                <add assembly="BlueFinity.mvNET.AdapterObjects, Version=3.5.0.0, Culture=neutral, PublicKeyToken=0E042501BCAF5804"/>  
                <add assembly="BlueFinity.mvNET.BindingObjects, Version=3.5.0.0, Culture=neutral, PublicKeyToken=0E042501BCAF5804"/>  
                <add assembly="BlueFinity.mvNET.CoreObjects, Version=3.5.0.0, Culture=neutral, PublicKeyToken=0E042501BCAF5804"/>  
                <add assembly="BlueFinity.mvNET.AdapterObjectsInt, Version=3.5.0.0, Culture=neutral, PublicKeyToken=0E042501BCAF5804"/>  
                <add assembly="BlueFinity.mvNET.Common, Version=3.5.0.0, Culture=neutral, PublicKeyToken=0E042501BCAF5804"/>  
                <add assembly="BlueFinity.mvNET.GatewayClient, Version=3.5.0.0, Culture=neutral, PublicKeyToken=0E042501BCAF5804"/>  
                <add assembly="BlueFinity.mvNET.mvNETDB, Version=3.5.0.0, Culture=neutral, PublicKeyToken=0E042501BCAF5804"/>  
                </assemblies> 
        </compilation> 
        <!-- --> 
        <pages> 
            <namespaces> 
                <clear/> 
                <add namespace="System"/>  
                <add namespace="System.Collections"/>  
                <add namespace="System.Collections.Specialized"/>  
                <add namespace="System.Configuration"/>  
                <add namespace="System.Text"/>  
                <add namespace="System.Text.RegularExpressions"/>  
                <add namespace="System.Web"/>  
                <add namespace="System.Web.Caching"/>  
                <add namespace="System.Web.SessionState"/>  
                <add namespace="System.Web.Security"/>  
                <add namespace="System.Web.Profile"/>  
                <add namespace="System.Web.UI"/>  
                <add namespace="System.Web.UI.WebControls"/>  
                <add namespace="System.Web.UI.WebControls.WebParts"/>  
                <add namespace="System.Web.UI.HtmlControls"/>  
            </namespaces> 
            <controls> 
                <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>  
            </controls> 
        </pages> 
    </system.web> 
    <!-- --> 
    <system.net> 
        <mailSettings> 
            <smtp from="iDespatch@clarketransport.co.uk">  
                <network defaultCredentials="true" host="" password="" userName=""/>  
            </smtp> 
        </mailSettings> 
    </system.net> 
    <!-- --> 
    <location allowOverride="true" inheritInChildApplications="true">  
        <appSettings configSource="appsettings.config"/>  
    </location> 
</configuration> 
 
0
Mike Fleischauer
Top achievements
Rank 1
answered on 23 Nov 2009, 06:24 PM
I had a somewhat similar experience and a number of the initial error/warnings were from Telerik referenced libraries.  Then the performance in my IDE definitly got more sluggish.  Finally I started getting a number of errors in my ASP.net project saying my class libraries aren't declared ( are you missing a reference? ), which I wasn't.  A restart caused this to go away, until I closed/opened that source file and it seemed to reoccur.

I gave up at this point...  I think I am just at the wrong point in this solution ( which contains a good 30 projects and another 10 or so 3rd party libraries included ), so I have Just Code disabled for now.  I will give it a shot again on my next from scratch project.
0
Hans Kratz
Telerik team
answered on 23 Nov 2009, 06:44 PM
Hi Mike! Hi Phil

Thanks a lot for your feedback!

We fixed a bug which was causing behavior similar to what Mike describes in Friday's internal build which is available here. It would be great if you could give it a try and let us know if the issue is fixed for you.


Best wishes,
Hans
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Phil
Top achievements
Rank 2
answered on 25 Nov 2009, 01:06 PM

No, sorry, I downloaded that internal build but it was just the same.

 

0
Hans Kratz
Telerik team
answered on 30 Nov 2009, 04:09 PM
Hi Phil,

i tried to reproduce this problem but could not. Attached is the website with which I tried to reproduce the problem. Maybe I am missing something, Could you please have a look and try to turn it into a testcase which demonstrates your problem? That would help us tremendously.

Sorry for any inconvenience that bugs in our software are causing.


Greetings,
Hans
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
General Discussions
Asked by
Telerik Admin
Top achievements
Rank 1
Iron
Answers by
Phil
Top achievements
Rank 2
Chris
Telerik team
Mike Fleischauer
Top achievements
Rank 1
Hans Kratz
Telerik team
Share this question
or