tagged [exe]

How do I set the version information for an existing .exe, .dll?

How do I set the version information for an existing .exe, .dll? As part of our build process I need to set the version information for all of our compiled binaries. Some of the binaries already have ...

How to make exe files from a node.js app?

How to make exe files from a node.js app? I have a node app that I wrote, that I run as follows: `node.exe app.js inputArg` Is there some way I can package this into a .exe by itself? So I can just do...

6 Sep at 18:7

WCF client logging dotnet core

WCF client logging dotnet core I'm using on windows and have a file with classes generated by the . I'm using nlog for the logging purpose. Is there a way I can log all the to and from the external se...

10 Aug at 09:10

Closing form from another thread

Closing form from another thread I have got this code which runs an `.exe` And when it closes it calls method netpokl_Closed. The is

19 Aug at 08:49

Which icon sizes should my Windows application's icon include?

Which icon sizes should my Windows application's icon include? I have a Windows application which will run in Windows XP and newer (i.e. Vista/7). According to the [Vista UI Guidelines](http://msdn.mi...

10 Nov at 16:45

Prevent DebuggerStepThroughAttribute from applying to my non-xsd-generated partial class?

Prevent DebuggerStepThroughAttribute from applying to my non-xsd-generated partial class? I used the xsd.exe tool to generate a class based on my xml schema. It created a public partial class with Deb...

8 Jul at 18:58

How to create a XSD schema from a class?

How to create a XSD schema from a class? I'm having a hard time with the XSD files. I'm trying to create an XSD file from a class: ``` public enum Levels { Easy, Medium, Hard } public sealed class Con...

12 Apr at 18:3

XmlSerialization and xsi:SchemaLocation (xsd.exe)

XmlSerialization and xsi:SchemaLocation (xsd.exe) I used xsd.exe to generate a C# class for reading/writing GPX files. How do I get the resultant XML file to include the xsi:schemaLocation attribute e...

11 Sep at 00:6

Copy exe from one project to another's debug output directory

Copy exe from one project to another's debug output directory I have two projects, ProjOne.exe and ProjTwo.exe. I want to build ProjOne.exe and it know that it's dependant on ProjTwo.exe so that it wi...

8 Mar at 18:10

Nullable value with xsd.exe generated class

Nullable value with xsd.exe generated class I have been using xsd.exe to generate a class for deserializing XML into. I have decimal value in the source xsd that is not required: The resulting class f...

16 Sep at 15:41

C# Launcher program(ConsoleApp) that launches other executables

C# Launcher program(ConsoleApp) that launches other executables I've written a launcher program that fires off a given number of executables, with the following code: Process.Start(strPath2EXE); The p...

13 May at 19:2

XSD.exe and "Circular Group references"

XSD.exe and "Circular Group references" I am attempting to build some classes so that I can deserialise an XML file created by a third party application. Luckily the developer of the 3rd party applica...

5 Mar at 17:58

How to merge multiple assemblies into one?

How to merge multiple assemblies into one? I consuming my service stack using EXE project (startup task for azure application) in that I have copied following service stack's DLL & some Azure's DLLs i...

26 Oct at 14:22

Wix - How to run exe files after installation from installed directory?

Wix - How to run exe files after installation from installed directory? I'm using a program which is being installed using wix. (Don't know if it's relevant but it's a C# program) I want to run an exe...

9 Oct at 12:29

Process.Start() under asp.net?

Process.Start() under asp.net? According to [msdn](http://msdn.microsoft.com/en-us/library/0w4h05yb.aspx) : > ASP.NET Web page and server control code executes in the context of the ASP.NET worker pr...

29 Dec at 08:58

How to get DNS name from REST service which is consumed by startuptask of Azure webrole

How to get DNS name from REST service which is consumed by startuptask of Azure webrole I have confirmed with that it's not possible to get DNS Name and environment details (staging vs production) wit...

16 May at 05:30

Process.Start() not starting the .exe file (works when run manually)

Process.Start() not starting the .exe file (works when run manually) I have an `.exe` file that needs to be run after I create a file. The file is successfully created and I am using the following cod...

27 Jul at 09:2

How to generate a List instead of an array in C# with xsd.exe

How to generate a List instead of an array in C# with xsd.exe I have an XML schema .xsd file and generate my file with all the C# classes with the . If I have a sequence of elements within an XML tag,...

9 Jul at 21:46

How to create two different executables from one Visual Studio project

How to create two different executables from one Visual Studio project I have a main executable that runs based on settings saved in a configuration file. I want to be able to change the settings in t...

ServiceStack WSDL error. Endpoint is not compatible with Windows Store apps. Skipping...

ServiceStack WSDL error. Endpoint is not compatible with Windows Store apps. Skipping... Working on a Windows 8 (metro style) application, and want to reference a service hosted by ServiceStack from i...

Xsd.exe or Svcutil.exe to convert XSD schema to a class

Xsd.exe or Svcutil.exe to convert XSD schema to a class Is it so that svcutil tool is recommended over xsd tool? I didn't see that as a confirmed statement, but it did seem so. The reason that I am co...

23 Mar at 09:48

Automatically generate C# from XSD in Visual Studio IDE

Automatically generate C# from XSD in Visual Studio IDE I am running Visual Studio 2010. I have a `XSD` schema and want to use xsd.exe tool to generate appropriate C# file. I have done this successful...

27 Jul at 07:31

How to read XML into a class/classes that matches its xsd

How to read XML into a class/classes that matches its xsd So I have an XSD and a webservice that delivers in that same format. Now I could go ahead and read the xml into a document, create my objects ...

13 Aug at 12:10

Create MULTIPLE class files based on an XSD

Create MULTIPLE class files based on an XSD I may be attempting something that is not possible with the XSD tool but I wanted to ask before moving on to a simpler solution. I have an XSD file that has...

11 Jul at 18:31

Alternative to "Allow service to interact with desktop"?

Alternative to "Allow service to interact with desktop"? I have a windows service (C#) installed on a server that launches every 10 minutes an executable file (C#) to process some images from one dire...

27 Feb at 18:39