| Installing Visual Studio 2005 Service Pack 1 (XP edition) breaks GAT |
|
 |
Index ‹ Visual Studio ‹ Visual Studio Guidance Automation Toolkit
|
- Previous
- 1
- Visual Studio Extensibility Visual Studion 2003-ReSharper addin
HI,
I have Resharper installed on my box.I have been facing a rather strange problem.The Intellisense is not working on my box. Is this because of some setting in Resharper.Also, I am unable to Uninstall Resharper as it does not appear in the list of Add/Remove programs. Please help me enabling Intellisense.
Regards
- 2
- 3
- Visual Studio Source Control and SourceSafe Problem!
Hi
The developers are facing a problem related to check out/in in VSS.Whenever they checkout a solution file(which contains many projects in itself) and when they check back in the solution file,some projects are not there in the solution file.
I wanna know that is this a VSS related problem or network related problem or something else.
Regards,
Hisan
- 4
- Visual Studio Debugger error: Cannot obtain value
Hello,
When i am debuging my application, i can't read the values of the variables used in the application. I see only the message: "error: Cannot obtain value" as the value. How can i fix this
I use the tool visual studio 2005, vb .net and sql server 200.
os windows xp
Wouter
- 5
- 6
- Windows Presentation Foundation (WPF) Another question about localizationHi,
Is there a way to change culture on the fly so that all the UI elements would be updated accordingly I tried modifying Thread.CurrentThread.CurrentCulture and Thread.CurrentThread.CurrentUICulture, but it does not have any effect once the UI is displayed (as opposed to including this code in the application constructor).
And another question, does WPF change the flow direction automatically according to the set culture or should I set it manually for each Window/Page I tried setting the current culture to arabic, but that didn't effect the flow direction. Are there more settings to tweak
Many thanks in advance.
- 7
- Windows Presentation Foundation (WPF) Media Element Formats and Player
My question relates to the video format and media player in WPF. In previous frameworks, while mostly used, Direct3D was used to play videos in specific formats such as AVI or WMV. While this may work in the new framework, it is under my impression that the WPF Media element only works with WMV. Plus, in order to play the media element itself the user must have windows media player installed in order to play (version 10 or 11). When I have used the Media element it only sometimes works while loading wmv files without any other codecs necessary. Is this an issue with WPF in general, or am I have I missed something here
- Thomas
- 8
- Visual Studio Setup and Installation Visual studio SP1 crashes the whole systemThe same problem when installation fails due to insuficient disk space - all .net apps does not work. The whole service pack is *** - Why Microsoft could not make a better installer - it gives all kinds of errors, you wait 2 hours to make the instalation and if something goes wrong you have to reinstall the whole system. The Visual Studio itself installs for less time. Now I have to reinstall the whole system because I don't have the time to wait for solution. I think there should be service pack for the servoce pack :)
- 9
- Crystal Reports for Visual Studio Crystal repots chart problem [URGENT]
Hello everybody,
I have questions in database table and possible answer choices for each question. What I need to do is show a chart for each question and show the answers of the questions graphically. I have written an stored procedure that selects questions and their answers, and in the report I have grouped the questions. For showing multiple charts, I need to place the chart in the detail section but it doesn't allow me to place the chart in detail section. What is the way in the crystal report to generate charts based on the data.
Thanks.
- 10
- Windows Presentation Foundation (WPF) Issue with frame resizing!!!
Good morning,
I'm trying to navigate throw some custom pages in my wpf application. I was checked that "AppModel/FragmentNavigationSample" in wpf samples works perfectly opening a page in a frame embedded in the main window of the application.
I copy the main window and the page to a new project created with "microsoft expressions" but, when I open the frame, the main window is resized to the content size. I think that the only difference is in the project file.
Can anyone tell me what to do to resolve this little problem
Regards,
Ruben Leal
- 11
- 12
- Visual Studio WPF Designer about TabControl personalizationHello,
___________________ ______________ / text1 \ / text2 \ | (also back image) | (also back image) | --------------------------------------------------------------------- | | --------------------------------------------------------------------- I need to make a TabControl with picture and text on the tab header. The picture and the text should change on click so the focus tab to be with another picture and the text with another color. The code below does change the bitmap. but i can't figure out how to change the font color. I added the IsHitTestVisible = false to the font because when i was with the mouse on the text, the bitmap changed to grayed one.how to to that
<Window x:Uid="Window_1" x:Class="wifi.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="wifi" Height="596.25" Width="858.5" xmlns:d="http://schemas.microsoft.com/expression/blend/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" >
<Window.Resources> <Style x:Key="MyHead" TargetType="{x:Type Image}"> <Setter Property="ClipToBounds" Value="False"/> <Setter Property="Source" Value="Res\settings_normal.bmp"/> <Setter Property="Stretch" Value="Uniform"/> <Setter Property="StretchDirection" Value="Both"/> <Setter Property="Margin" Value="0.059,-2.227,1.559,15.866"/> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Source" Value="Res\settings_clicked.bmp"/> </Trigger> </Style.Triggers> </Style>
<Style x:Key="MyTab" TargetType="{x:Type TabItem}"> <Setter Property="Padding" Value="-4,-4,-4,-4"/> <Setter Property="Width" Value="202"/> <Setter Property="Height" Value="40"/> <Setter Property="Margin" Value="-2,-11,-2,-14"/> </Style>
<Style x:Key="MyText" TargetType="{x:Type TextBlock}"> <Setter Property="RenderTransformOrigin" Value="0.494,0.453"/> <Setter Property="Margin" Value="4,12.8,7,30.3"/> <Setter Property="Panel.ZIndex" Value="1"/> <Setter Property="IsHitTestVisible" Value="False"/> <Setter Property="FontSize" Value="12"/> <Setter Property="Foreground" Value="#FFFFFFFF"/> <Setter Property="TextAlignment" Value="Center"/> <Setter Property="HorizontalAlignment" Value="Center"/> <Setter Property="Width" Value="133"/> </Style>
<Style x:Key="TabGrid" TargetType="{x:Type Grid}"> <Setter Property="Width" Value="205.733"/> <Setter Property="Height" Value="59.363"/> </Style>
</Window.Resources> <TabControl Margin="20.5,162.051,28,36.529" Name="tabControl1" Grid.Column="1" >
<TabItem Tag="{x:Null}" Content="Scanning and status" Style="{StaticResource MyTab}"> <TabItem.Header> <Grid Style="{StaticResource TabGrid}"> <TextBlock Style="{StaticResource MyText}" Text="Scanning & Status" IsEnabled="False"/> <Image Style="{StaticResource MyHead}"/> </Grid> </TabItem.Header> </TabItem>
<TabItem Tag="{x:Null}" Content="yy" Style="{StaticResource MyTab}"> <TabItem.Header> <Grid Style="{StaticResource TabGrid}"> <TextBlock Style="{StaticResource MyText}" Text="Favorites Management"/> <Image Style="{StaticResource MyHead}"/> </Grid> </TabItem.Header> </TabItem> </TabControl> </Window>
- 13
- Visual Studio Source Control and SourceSafe Date-Time problem
Hi
Few days ago i uploaded some files in VSS which were supposed to be uploaded earlier, so i just changed back my system time and date to my desired date and then uploaded the file in VSS,the date and time along side that file is fine(means its the same date on which i uploaded the files after changing the dates of my pc),but when i check the history of the file it shows the actual date of file uploaded i mean it doesnt show the same date and time that was supposed to...why is it so and is there any seperate date and time mechanism of VSS or VSS takes the systems date and time
Regards,
Hisan
- 14
- Visual Studio Extensibility Cross project code generation
Hi,
I'm very new to actually working with DSL and software factories, so the questions can seem a bit dumb.
Here it goes:
- If I create a new DSL and an acommpanying custom tool, I can generate code by walking over the diagram. Is there a way that the generated code can be split accross existing projects in a Visual Studio 2005 solution
- Would referencing artefacts that belong to other projects in a diagram (e.g. a diagram in a data access layer project has a reference to a business component in another project) be a good and allowable practice
That's it for now
Any help or feedback is highly appreciated.
Regards,
W. Jansoone
- 15
|
| Author |
Message |
Mike Hadlow

|
Posted: Visual Studio Guidance Automation Toolkit, Installing Visual Studio 2005 Service Pack 1 (XP edition) breaks GAT |
Top |
I've just installed Visual Studio 2005 Service Pack 1 (XP edition) and now when I try to register or unregister a GAT package (for example ASMX Guidance Package) I get the following error:
System.TypeLoadException: EnvDTE.Project, EnvDTE ---> System.IO.FileNotFoundException: Couldn't find assembly EnvDTE.
I guess because the service pack has installed a new version of EnvDTE.
Any advice anyone
Here's the full stack trace:
System.TypeLoadException: EnvDTE.Project, EnvDTE ---> System.IO.FileNotFoundException: Couldn't find assembly EnvDTE. at Microsoft.Practices.Common.Services.TypeResolutionService.GetAssembly(AssemblyName assemblyName, Boolean throwOnError) at Microsoft.Practices.Common.Services.TypeResolutionService.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) --- End of inner exception stack trace --- at Microsoft.Practices.Common.Services.TypeResolutionService.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) at Microsoft.Practices.Common.Services.TypeResolutionService.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) at Microsoft.Practices.Common.Services.AliasResolutionService.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) at Microsoft.Practices.Common.Services.TypeResolutionService.GetType(String typeName, Boolean throwOnError) at Microsoft.Practices.RecipeFramework.GuidancePackage.EnsureInitializeMetadataForCurrentRecipe() at Microsoft.Practices.RecipeFramework.GuidancePackage.Execute(String recipe, IAssetReference reference, IDictionary arguments) at Microsoft.Practices.RecipeFramework.GuidancePackage.Execute(IAssetReference reference) at Microsoft.Practices.RecipeFramework.RecipeReference.OnExecute() at Microsoft.Practices.RecipeFramework.AssetReference.Execute() at Microsoft.Practices.RecipeFramework.VisualStudio.RecipeMenuCommand.OnExec() at Microsoft.Practices.RecipeFramework.VisualStudio.AssetMenuCommand.Invoke()
Visual Studio43
|
| |
|
| |
 |
vga

|
Posted: Visual Studio Guidance Automation Toolkit, Installing Visual Studio 2005 Service Pack 1 (XP edition) breaks GAT |
Top |
Hi Mike,
Can you check if you have the EnvDTE.dll file at C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies
thanks, -Victor.
|
| |
|
| |
 |
Mike Hadlow

|
Posted: Visual Studio Guidance Automation Toolkit, Installing Visual Studio 2005 Service Pack 1 (XP edition) breaks GAT |
Top |
Hi Victor, thanks for replying so promptly.
Unfortunately I've just gone ahead and reinstalled VS 2005, which has fixed the problem. So, yes EnvDTE.dll is in C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies now. I'll re-install SP1 again now to see if I can reproduce the error.
|
| |
|
| |
 |
Mike Hadlow

|
Posted: Visual Studio Guidance Automation Toolkit, Installing Visual Studio 2005 Service Pack 1 (XP edition) breaks GAT |
Top |
Hi Victor,
I've now re-installed VS2005 SP1 and all my GAT packages are working fine again. I guess I must have somehow damaged my VS installation at some point during the first attempt at installing SP1. Doing a re-install of VS2005 and then re-applying the service pack has fixed the problem.
Thanks for your help
Mike
|
| |
|
| |
 |
vga

|
Posted: Visual Studio Guidance Automation Toolkit, Installing Visual Studio 2005 Service Pack 1 (XP edition) breaks GAT |
Top |
Thanks for the update and glad it is working now!
|
| |
|
| |
 |
| |
 |
Index ‹ Visual Studio ‹ Visual Studio Guidance Automation Toolkit |
- Next
- 1
- Customer Care Framework Error in Agent desktop
Hi,
I have launched the Agent desktop...If i select the customer from lookup table it shows the following
error...Please anyone help me
12/20/2006 2:36:21 PM: Customer Care Framework 2005 - Agent Desktop: Information: Starting... Customer Care
Framework 2005 - Agent Desktop 12/20/2006 2:54:41 PM: Customer Care Framework 2005 - Agent Desktop: Error: Failed to connect to the web server. Please verify that you can connect to the web server.The underlying connection was closed: The remote name could not be resolved.
\n\nStack:\n at Microsoft.Ccf.Csr.Sessions.SetActiveSession(Guid sessionID) at Microsoft.Ccf.Csr.Sessions.AddSession(String name, Int32 callID, Object customer) at Microsoft.Ccf.Samples.Csr.AgentDesktop.Desktop.AddSession(CustomerRecord customer, CallClassProvider call) 12/20/2006 2:54:42 PM: Customer Care Framework 2005 - Agent Desktop: Error: An error has occurred while clicking the toolbar button.
Specified argument was out of the range of valid values. Parameter name: '1' is not a valid value for 'index'.\n\nStack:\n at
System.Windows.Forms.ComboBox.set_SelectedIndex(Int32 value) at Microsoft.Ccf.Samples.WorkFlowControl.WorkFlowControl.StartWorkflowByIndex(Int32 index) at Microsoft.Ccf.Samples.Csr.AgentDesktop.Desktop.doLookupCommand() at Microsoft.Ccf.Samples.Csr.AgentDesktop.Desktop.toolBar_ButtonClick(Object sender, ToolBarButtonClickEventArgs e)
- 2
- 3
- Windows Presentation Foundation (WPF) Possible to make an animated Sprite using WPF?
I'm trying to decide what might be the best way to cycle through a series of individual images or frames to give the impression of animation - similar to how an animated gif file works.
I have yet to find a single example of this kind of keyframe animation within WPF. There are probably various ways one could acheive this but I wondered if anyone could point me to an existing example using either XAML or code.
I'm currently thinking along the lines of finding a way to change the ImageSource of an ImageBrush at regular intervals - but is there a better way
- 4
- Windows Presentation Foundation (WPF) Emboss effect
Can anybody help me with EmbossBitmapEffect
After export XAML from GD some Paths with embossing convert to png, and emboss live many Paths.
"In XAML" I found EmbossBitmapEffect but can create cool emboosing :((
Can you give me some samples of EmbossBitmapEffect
Thx
- 5
- Visual Studio Extensibility Code Generation Conference, May 2007, Cambridge, UK
The Code Generation Network is organizing a new conference themed around Code Generation tools and technologies to take place in Cambridge, UK from 18th May - 20th May 2007.
We're looking for session proposals from people who have experience applying DSLs, and can lead a session on this subject for a developer audience. Accepted session leaders will have their conference fees waived.
There's more information at the Code Generation 2007 web site. It's straightforward to submit a session proposal, but the submission deadline is Friday January 12th 2007.
Microsoft are sponsoring the event and I expect the DSL team to participate, so it will also be a great opportunity to talk about the tools with the experts.
- 6
- Visual Studio Report Controls My query works in query analyser but freezes when i preview a reportHi guys/girls
I've got a problem with RS2000, i've generated a report, but my code freezes in RS2000 although when i run my code in Query Analyser then it works fine.
What i am trying to do is add the previous months data to the current month. when i run the query it works, but when i preview my report it just inserts the first value for all the rows
Anyway here is the code, if someone knows how to simplify it for me then please, i would be greatful or perhaps offer an alternative solution:
-- Create Table that will hold the values for the running total declare @MyTable TABLE (UID INT IDENTITY(1,1), CurrentMonth VARCHAR(20), GPYTDValue FLOAT, RunningValueGP FLOAT) INSERT INTO @MyTable (CurrentMonth, GPYTDValue)
SELECT dt.[month_name], (sum(ft.price)- sum(ft.cost)) as turnover2005 FROM dim_time dt, fact_transaction ft, dim_Client dc WHERE dt.time_key = ft.time_key AND dt.[year] IN (2005) AND dc.client_name like '%medicare%' GROUP BY dt.[year], dt.[Month], dt.[Month_Name] ORDER BY dt.[Year], dt.[month], dt.[month_name],sum(ft.cost)
UPDATE @MyTable SET RunningValueGP = GPYTDValue WHERE UID = 1
DECLARE @iStart INT DECLARE @iEnd INT
DECLARE @RunningTotalGP FLOAT
SELECT @iStart = MIN(UID) FROM @MyTable SELECT @iEnd = MAX(UID) FROM @MyTable
SELECT @RunningTotalGP = RunningValueGP FROM @MyTable WHERE UID = @iStart
SELECT @iStart = @iStart + 1
WHILE (@iStart <= @iEnd) BEGIN SELECT @RunningTotalGP = @RunningTotalGP + GPYTDValue FROM @MyTable WHERE UID = @iStart UPDATE @MyTable SET RunningValueGP = @RunningTotalGP WHERE UID = @iStart SELECT @iStart = @iStart + 1 END
SELECT * FROM @MyTable
Kind Regards
- 7
- Visual Studio Extensibility EnvDTE Visual Studio 8 (2005) -> Error _COMPlusExceptionCode = -532459699
Hi All,
I am getting the error : "The File xyz.odx is not open".
The scenario is I have added the file into the solution project using code below
project.ProjectItems.AddFromFileCopy("C:\xyz.odx"); //No error. works fine
Next, I am trying to access the xyz.odx file for editing some properties of the orchestration file using code below
ProjectItem workflow=project.ProjectItems.Item("xyz.odx");
workflow.Open(EnvDTE.Constants.vsViewKindDesigner); //Get error either here or next line
Document workflowDoc=workflow.Document; //Error observed.
EnvDTE is the latest version 8.0.0.0.
I get a COMPlus exception code: Error _COMPlusExceptionCode = -532459699
This code used to work fine in .Net 1.1 + VS2003 + BT 2004. Now the environment has been upgraded to .Net 2.0 + VS2005 + BT2006. Any idea why it fails
Please reply back if any additional info is needed.
Regards
Sujit
- 8
- Windows Presentation Foundation (WPF) ElementHost = can’t use embeded resources !?
Hi,
I found that if you use an ElementHost on a Win form to host a xaml aplication you will not be able to use embeded resources.
This is because the only way that WPF embed's a resource on to an .exe or .dll is by defining a <resource/> on the "app.xaml" page.
So when you use an ElementHost that merely shows a simple WPF form with some images or whatever, the only way to access resources is by accessing them thru siteoforigin URI e.g "pack://siteoforigin:,,,/XamlResources". This means you have to create a folder on your aplication to store all your resources. In my case that's bad :(.
Anyone with the same problem
- 9
- Visual Studio Tools for Office VSTO 2005 SE Installaion issues
hi,
i'm having problems with the installation of the vsto. i run the vsto 2005 se installation package and the PIA install for office 2003 but when i try to run code samples i get the following error:
Error: The operation could not be completed. No such interface supported
this also happens when i try and build my soulution. am i doing something wrong or are there any known conflicts with vsto and other .net components
- 10
- Windows Communication Foundation ("Indigo") ChannelFactory.Close() vs ChannelFactory.BeginClose()
We're building a web application that is using an application server via WCF web services. The web server is placed in a temporary DMZ with its own rather slow broadband connection serving traffic from the internet, while the application server is to be placed in our ordinary network behind our ordinary firewall. In other words, connections between the two servers will go through the internet with all the trouble that may cause. In about a year or so we will establish a proper DMZ to obtain a more stable and fast connection.
We have chosen to use the generic ChannelFactory class in stead of building client proxies, as this seems to be a more maintainable approach in this case.
When debugging, we have noticed that the ChannelFactory.Close() sometimes takes a little time. Some bright head came up with the idea to use the async approach in stead, by calling ChannelFactory.BeginClose(null, null), which means we initiate a close and do not wait or handle the callback by provide a delegate.
This seems to work out fine in our small test environment. My question is whether this approach is at all advisable, or might cause problems in a production environment with much heavier load.
Thanx in advance for any advice on this!
:) Helge K
- 11
- 12
- 13
- Windows Communication Foundation ("Indigo") data contract issue
What is wrong with the following code. When i try to access Retrive() operation the application time outs and at times it get communication error while MyOperation1() and MyOperation2() are working fine. host and clients are on the same machine.
using System;
using System.ServiceModel;
using System.Collections.Generic;
using System.Runtime.Serialization;
// A WCF service consists of a contract (defined below as IMyService, DataContract1),
// a class which implements that interface (see MyService),
// and configuration entries that specify behaviors associated with
// that implementation (see <system.serviceModel> in web.config)
[ ServiceContract()]
public interface IMyService
{
[ OperationContract]
string MyOperation1(string myValue1);
[ OperationContract]
string MyOperation2(DataContract1 dataContractValue);
[ OperationContract]
CommunicationWrapper Retrieve();
}
public class MyService : IMyService
{
public string MyOperation1(string myValue1)
{
return "Hello: " + myValue1;
}
public string MyOperation2(DataContract1 dataContractValue)
{
return "Hello: " + dataContractValue.FirstName;
}
public CommunicationWrapper Retrieve()
{
CommunicationWrapper wrapper = new CommunicationWrapper();
List<Object> objList = new List<object>();
string str;
try
{
DataContract1 dataContract = new DataContract1();
dataContract.FirstName = "Saeed";
dataContract.LastName = "Hassan";
objList.Add(dataContract);
wrapper.Bolist = objList;
} catch(Exception e)
{
str = "The method or operation is not implemented.";
}
return wrapper;
}
}
[ DataContract]
public abstract class BaseClass
{
private string primaryKey;
[ DataMember]
public string PrimaryKey
{
get { return primaryKey; }
set { primaryKey = value; }
}
}
[ DataContract]
public class DataContract1 : BaseClass
{
string firstName;
string lastName;
[ DataMember]
public string FirstName
{
get { return firstName;}
set { firstName = value;}
}
[ DataMember]
public string LastName
{
get { return lastName;}
set { lastName = value;}
}
}
[ DataContractAttribute]
public class CommunicationWrapper
{
private List<object> bolist;
[ DataMember]
public List<object> Bolist
{
get { return bolist; }
set { bolist = value; }
}
public List<object> GetBOList()
{
return Bolist;
}
public void SetBOList(List<object> value )
{
Bolist = value;
}
}
- 14
- 15
- Developer Documentation and Help System Problems building using December CTP
Hi
Ive been happily using August CTP (been too busy to upgrade!) with no problems, I tried December CTP but have problems with documenting several assemblies because they result in a command that must breach the 260 characters path limit, but I dont get this issue with the August CTP.
I'm not too familiar with exactly what happens during the whole documenting process yet but I'm including a snippet from the log file from both CTPs in the hope that someone might spot something which may help me out.
From August CTP doc build (works fine):
Info: Building topic P:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.Properties Info: Building topic M:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.Reset(System.Configuration.ConfigurationElement) Info: Building topic M:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.SetAttributeValue(System.String,System.String) Info: Building topic M:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode)
The same section when I use Dec CTP:
Info: BuildAssembler: Building topic T:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData Info: BuildAssembler: Building topic Overload:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.#ctor Info: BuildAssembler: Building topic M:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.#ctor Info: BuildAssembler: Building topic M:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.#ctor(System.String,System.Type) Info: BuildAssembler: Building topic P:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.Attributes Info: BuildAssembler: Building topic M:Exchange.EnterpriseLibrary.Caching.Configuration.CustomCacheStorageData.Exchange#EnterpriseLibrary#Common#Configuration#IHelperAssistedCustomConfigurationData{Exchange#EnterpriseLibrary#Caching#Configuration#CustomCacheStorageData}#BaseGetPropertyValue(System.Configuration.ConfigurationProperty)
Unhandled Exception: System.IO.PathTooLongException: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
As you can see, the bit in red is more than 260 characters hence the error, there is no path information here so I cant truncate it in any way by reducing the path on disk.
I would also like to be able to try the November CTP to see if I get the same issue, but I cant find a link to previous CTP's anywhere, can anyone provide me with this also
|
|
|