Open Studio! When Visual Studio and Open Source Date!Looking for Developers|Getting started on Debugger
891 Replies - 109261 Views - Last Post: 27 August 2009 - 09:31 AM
#850
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 09 August 2009 - 11:37 AM
#851
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 09 August 2009 - 06:32 PM
[email protected], on 9 Aug, 2009 - 11:37 AM, said:
Yeah you can say that....We're nearing the final alpha and version 1.0.
OFF-TOPIC: The second phrase in your signature is "deep".
#852
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 09 August 2009 - 06:47 PM
From the screenshots, it looks like Open Studio is really coming together. Good work!
#853
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 10 August 2009 - 08:12 AM
programble, on 9 Aug, 2009 - 06:47 PM, said:
From the screenshots, it looks like Open Studio is really coming together. Good work!
Thanks....We worked hard on this.
Ok Team!, This is the "final" push for Open Studio. We're at the gate to version 1.0.
We just need to finish these features:
*Forms Designer: Will be disabled......
*Recent Projects list on startpage
*Fix Highlight issues when using debugger.
*use temp directory instead of "personal" folder when compile single files.
*Live error marking : kind of like how visual studio shows errors as you type.
*Intellisense : most likely never finish....
Another note: If you have started a feature in open studio and its not finished, its the time to finish it!
This post has been edited by Amrykid: 10 August 2009 - 08:24 AM
#854
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 12 August 2009 - 08:34 AM
#855
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 12 August 2009 - 12:14 PM
#856
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 12 August 2009 - 12:39 PM
OpenStudio.SDK.dll in the G.A.C
#857
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 12 August 2009 - 12:49 PM
VB:
Friend Module GAC
Private Sub New()
End Sub
''' <summary>
''' Add strong-named assembly to GAC. DLL must be in current directory.
''' </summary>
''' <param name="assemblyName">name of assembly (without .dll extension).</param>
Friend Sub Register(ByVal assemblyName As [String])
Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/i {0}.dll", assemblyName))
processStartInfo.UseShellExecute = False
Dim process__1 As Process = Process.Start(processStartInfo)
process__1.WaitForExit
End Sub
''' <summary>
''' Remove assembly from GAC.
''' </summary>
''' <param name="assemblyName">name of assembly (without .dll extension).</param>
Friend Sub Unregister(ByVal assemblyName As [String])
Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/u {0}.dll", assemblyName))
processStartInfo.UseShellExecute = False
Dim process__1 As Process = Process.Start(processStartInfo)
process__1.WaitForExit
End Sub
End Module
and this in C#
internal static class GAC
{
/// <summary>
/// Add strong-named assembly to GAC. DLL must be in current directory.
/// </summary>
/// <param name="assemblyName">name of assembly (without .dll extension).</param>
internal void Register ( String assemblyName )
{
ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/i {0}.dll", assemblyName));
processStartInfo.UseShellExecute = false;
Process process = Process.Start(processStartInfo);
process.WaitForExit;
}
/// <summary>
/// Remove assembly from GAC.
/// </summary>
/// <param name="assemblyName">name of assembly (without .dll extension).</param>
internal void Unregister ( String assemblyName )
{
ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/u {0}.dll", assemblyName));
processStartInfo.UseShellExecute = false;
Process process = Process.Start(processStartInfo);
process.WaitForExit;
}
}
i hope i works
This post has been edited by [email protected]: 12 August 2009 - 12:50 PM
#858
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 13 August 2009 - 01:59 PM
[email protected], on 12 Aug, 2009 - 12:49 PM, said:
VB:
Friend Module GAC
Private Sub New()
End Sub
''' <summary>
''' Add strong-named assembly to GAC. DLL must be in current directory.
''' </summary>
''' <param name="assemblyName">name of assembly (without .dll extension).</param>
Friend Sub Register(ByVal assemblyName As [String])
Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/i {0}.dll", assemblyName))
processStartInfo.UseShellExecute = False
Dim process__1 As Process = Process.Start(processStartInfo)
process__1.WaitForExit
End Sub
''' <summary>
''' Remove assembly from GAC.
''' </summary>
''' <param name="assemblyName">name of assembly (without .dll extension).</param>
Friend Sub Unregister(ByVal assemblyName As [String])
Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/u {0}.dll", assemblyName))
processStartInfo.UseShellExecute = False
Dim process__1 As Process = Process.Start(processStartInfo)
process__1.WaitForExit
End Sub
End Module
and this in C#
internal static class GAC
{
/// <summary>
/// Add strong-named assembly to GAC. DLL must be in current directory.
/// </summary>
/// <param name="assemblyName">name of assembly (without .dll extension).</param>
internal void Register ( String assemblyName )
{
ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/i {0}.dll", assemblyName));
processStartInfo.UseShellExecute = false;
Process process = Process.Start(processStartInfo);
process.WaitForExit;
}
/// <summary>
/// Remove assembly from GAC.
/// </summary>
/// <param name="assemblyName">name of assembly (without .dll extension).</param>
internal void Unregister ( String assemblyName )
{
ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/u {0}.dll", assemblyName));
processStartInfo.UseShellExecute = false;
Process process = Process.Start(processStartInfo);
process.WaitForExit;
}
}
i hope i works
yeah, i guess we should.....btw... Your getting better at converting C# to VB.NET
#859
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 14 August 2009 - 08:17 AM
Amrykid, on 13 Aug, 2009 - 01:59 PM, said:
[email protected], on 12 Aug, 2009 - 12:49 PM, said:
VB:
Friend Module GAC
Private Sub New()
End Sub
''' <summary>
''' Add strong-named assembly to GAC. DLL must be in current directory.
''' </summary>
''' <param name="assemblyName">name of assembly (without .dll extension).</param>
Friend Sub Register(ByVal assemblyName As [String])
Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/i {0}.dll", assemblyName))
processStartInfo.UseShellExecute = False
Dim process__1 As Process = Process.Start(processStartInfo)
process__1.WaitForExit
End Sub
''' <summary>
''' Remove assembly from GAC.
''' </summary>
''' <param name="assemblyName">name of assembly (without .dll extension).</param>
Friend Sub Unregister(ByVal assemblyName As [String])
Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/u {0}.dll", assemblyName))
processStartInfo.UseShellExecute = False
Dim process__1 As Process = Process.Start(processStartInfo)
process__1.WaitForExit
End Sub
End Module
and this in C#
internal static class GAC
{
/// <summary>
/// Add strong-named assembly to GAC. DLL must be in current directory.
/// </summary>
/// <param name="assemblyName">name of assembly (without .dll extension).</param>
internal void Register ( String assemblyName )
{
ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/i {0}.dll", assemblyName));
processStartInfo.UseShellExecute = false;
Process process = Process.Start(processStartInfo);
process.WaitForExit;
}
/// <summary>
/// Remove assembly from GAC.
/// </summary>
/// <param name="assemblyName">name of assembly (without .dll extension).</param>
internal void Unregister ( String assemblyName )
{
ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/u {0}.dll", assemblyName));
processStartInfo.UseShellExecute = false;
Process process = Process.Start(processStartInfo);
process.WaitForExit;
}
}
i hope i works
yeah, i guess we should.....btw... Your getting better at converting C# to VB.NET
Thanks D.I.C. for the great sub forum!
#860
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 16 August 2009 - 11:18 AM
#861
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 16 August 2009 - 01:01 PM
#862
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 16 August 2009 - 01:17 PM
#863
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 16 August 2009 - 01:39 PM
#864
Re: Open Studio! When Visual Studio and Open Source Date!
Posted 16 August 2009 - 01:59 PM
[email protected], on 16 Aug, 2009 - 01:39 PM, said:
http://www.dreaminco...owtopic=118177#
Yeah its good..a few spelling mistakes but...its...AWSOME

New Topic/Question
Reply




MultiQuote



|