Csc.exe is the command-line compiler for C# from Microsoft.

learn more… | top users | synonyms

0
votes
0answers
11 views

“using excel …” directive throwing namespace 'Microsoft' error when compiling to exe.?

I'm trying to compile my "Program.cs" C# source to an executable for portability reasons. I'm using 'csc.exe' method for compilation. Specifically, I first cd into the directory containing my .cs file ...
0
votes
1answer
57 views

What exactly is the difference between a Debug build and a Release build [duplicate]

on the bytecode side what exactly is different on an exe which was created during a debug build and one during a release build. i know that with debug it creates a pdb file which contains line ...
2
votes
0answers
35 views

Common Language Runtime Detected an Invalid Program with ClickOnce

I have an InvalidProgram exception with the message Common Language Runtime Detected an Invalid Program This happen in an application that we didn't change in the last 3 month. The only change ...
1
vote
1answer
33 views

VS2010 how to make output to show counter of projects built

I have solution with very big number of projects in it and would like to see somehow progress of compilation. As you probably know when compiling we see only those strings in Output Window (even if ...
3
votes
2answers
58 views

#line processor directive in C# increases the line number

The #line processor directive in C# increases the line number for each line to the end of file or until it reaches another #line processor directive; an auto incremental line number. That was ...
-2
votes
1answer
36 views

Unused assemblies worries when dealing with other non-microsoft compilers

If i reference unused assembly using the /r flag in the command prompt the csc will ignore it. so what if i reference unused assemblies via the IDE will it show the same behavior ? and what if i am ...
3
votes
1answer
35 views

How do I run csc against a folder other than the current working directory?

Is there a way to run csc against a folder other than the current working directory, or is the best practice to copy .cs files to the current working directory and then run csc?
0
votes
0answers
32 views

Read the error report of the csc.exe

we are running compilation from script of some sources , by calling csc.exe Is there any way to get error information in some structured xml file ? I mean , without parsing stdouptut. Maybe there is ...
0
votes
1answer
22 views

Make element stick to the right on Mobile screens

First time run across this issue. I have an element that is positioned to the right of the screen, like that .element { position:absolute; right:0 } Everything works as expected on desktop, ...
0
votes
1answer
30 views

Nant wont recognize namespace.Properties

I'm trying to use nant to build a solution for a c# project however I am having an issue specifying resources in my build file. I get the error code: CS0234: The type or namespace name 'Properties' ...
0
votes
0answers
52 views

C#: When performing XSLT: The process cannot access the file

I'm implementing XSLT using C#. In my working directory, I have data.xml file.xsl, and I want to apply the XSLT defined by file.xsl on data.xml, in order to get data.html xslt.cs: using System; ...
0
votes
0answers
45 views

Csc.exe compiles “different” .dlls from same .cs [duplicate]

Give a source .cs file as simple as below, is there any way to produce identical .dlls with MSBuild (or at least with csc.exe), so their binary hash would match? foo.cs public class Foo { public ...
26
votes
3answers
547 views

PDB file larger on the second compile and then stays the same size

Using the following simple file: using System; public class Program{ [STAThread] public static void Main(string[] args){ Console.WriteLine("Boo"); } } And then ...
1
vote
3answers
111 views

compile error CS0305 Using the generic type List

While csc /t:library strconcat.cs with using System.Collections.Generic; I get an error strconcat.cs(9,17): error CS0305: Using the generic type 'System.Collections.Generic.List<T>' ...
0
votes
0answers
54 views

Bootstrap MSBuild, CSC compiler etc

I was wondering how do these code analysis tools such as Semmle and CAST work in the sense of bootstrapping the compilers, linkers and build engines? Specifically I want to be able to create a set of ...
0
votes
0answers
75 views

Generating App_Web_<random_name>.cs without compiling asp.net files

ASP.NET generates a .cs file for each aspx file on the fly in the Website Compilation Model. The generated file's name is like App_Web_.cs and it starts by: #pragma checksum "...\Test.aspx" "{...}" ...
-3
votes
1answer
247 views

How to Create a DLL of .csproj file [closed]

csc /target:library /out:MyMaths.dll ClassLibraryFunction.csproj I am using this code to generate a DLL in VS.Cmd compiler for a whole solution. However, I am getting a compile error, and the DLL is ...
1
vote
3answers
115 views

Which version csc.exe should I use?

I am following a tutorial to consume WSDL in a C# aplication: http://my.execpc.com/~gopalan/dotnet/webservices/webservice_csharp_client.html At step 2, it says do following: ...
9
votes
4answers
210 views

Why doesn't this recursion produce a StackOverFlowException?

What is wrong with this code: using System; namespace app1 { static class Program { static int x = 0; static void Main() { fn1(); } static ...
3
votes
4answers
133 views

Is compiling Release and Debug going to generate different IL code + different machine code?

I heard compiling in Release mode generates optimized code than in Debug mode, which is fine. But is this optimization in the IL? is it in the machine code once the CLR runs it? is the metadata ...
4
votes
1answer
2k views

Visual Studio 2012 Command Line Compiler

I know this may appear to be a duplicate question, but I have been through all of the existing answers to no avail. I have been trying to have command prompt acknowledge the command line compiler for ...
0
votes
3answers
611 views

Run CSC.exe from command line using Batch File

I am using the following batch script code to compile c# code but what I see is a black window (csc.exe) flashes and I can not see the exe file created. start /wait ...
2
votes
4answers
298 views

Compile and run the program on the fly

I have a strange requirement, I have been asked to code a certain validation script in VBScript because its in plain text. But I am more comfortable in c#. So is there anyway to schedule it in Task ...
2
votes
1answer
116 views

CodeDomProvider: where is the LIB environment variable located?

I'm using a System.CodeDom.Compiler.CodeDomProvider.CreateProvider("CSharp") to compile C# classes on the fly. Recently I've switched from Visual Studio 2010 to Vistual Studio 2012. I also uninstalled ...
0
votes
0answers
122 views

Compiling c# code with csc

I have developed some code in C# with VS2010 and now I want to compile it but unfortunately I can't do so in Windows 7 and I have to do it in Windows Server 2008 because the code is accessing ...
0
votes
3answers
783 views

Visual Studio 2012 csc.exe Error. Executable not valid for OS

I am getting the following error when trying to compile and test any type of project in Visual Studio 2012 Professional. Error 1 The specified task executable "Csc.exe" could not be run. The ...
0
votes
1answer
139 views

Compiling multiple files in a single directory separately with CSC

I have multiple C# sources files (around 50) in a directory. What I want to do is to compile all of them separately, i.e. so that each of them should generate its own executable file. (Some of the ...
1
vote
1answer
101 views

why vcbuild and Visual Studio compiled files binary not compatible

Until now I compile my project from VS and now I move compilation process to the script. I use vcbuild.exe with command line parameters for this purposes. What can I saw is that my output files is ...
0
votes
4answers
612 views

How to compile one project into multiple dlls in .NET

I am trying to compile one .Net c# project into multiple dlls. But here is the thing. This is my project structure. Bin Dir1 Dir2 File1.cs File2.cs myproject.csproj I want to compile this ...
0
votes
1answer
598 views

Reference errors after installing VS2012RC

We use dmake for our build machines and VS2010 for building locally. Everything worked fine, then I installed VS2012 RC (ultimate). It's building ok in Visual Studio, although I get a bunch of these ...
1
vote
1answer
56 views

How is compiler dealing with these Generic Plugin Interface instance methods?

I'm working with some, unfortunately largely undocumented, existing code and I'm having trouble understanding how it calls upon the methods of the plugins it loads. My aim at the moment is simply to ...
2
votes
1answer
418 views

Setting processor affinity on CSC.exe launched by CoreCompile MSBuild Task

I am wondering if there is simple way to ensure that: when a C# project is compiled, the Csc.exe launched inherits the parent processor affinity settings; or perhaps a way that I can supply this. I ...
7
votes
1answer
596 views

Escape Catch-22 with extension attributes in .NET 2.0

How can a single .NET assembly, targeting 2.0, 3.0, 3.5, 4.0, and 4.5 concurrently, support extension methods for both C# and VB.NET consumers? The standard suggestion is to add this: namespace ...
1
vote
1answer
678 views

Visual C# 2010 command line parameters to csc

In Visual C++ 2010, I can see the parameters which are passed to cl.exe: That's very useful because sometimes you forget to check this or that option, add some directory here and there, etc and ...
1
vote
2answers
2k views

csc.exe reference external .dll file

I am trying to make a simple c# program using Growl C# API. I tried to compile my program in two different ways: 1) I kept my .dll file in the same directory as my .cs file. Than I ran csc ...
1
vote
1answer
494 views

Change Visual Studio 2010's in-process compiler?

This is a follow-up to: Projection using async delegate/lambda Apparently, the Async CTP has a bug that I've hit into, and I need to use the VS11 compiler. At the command-line, running msbuild even ...
2
votes
1answer
1k views

How to use references when compiling c# code via command line

Could anyone help me compile via command line some c# files? I have 4 files to compile, Main, Form1 (which uses 2.cs file) and another class used in the project. I would like to compile this project ...
1
vote
1answer
161 views

CSharp compiler can't open files in parent directory

I'm trying to compile a cs file that is in a sibling directory of my project but csc fails to open it. Here's a sample of the command line that triggers the issue: csc ../test/file.cs Csc prints ...
2
votes
4answers
139 views

Does the IL knows what an INTERFACE is?

For example when you introduce an static class in your source code, csc compiler turns it into a sealed abstract class (Correct me if I am wrong, please). But how about Interface; Does the CLR knows ...
2
votes
2answers
476 views

How do I set the flags/switches for the aspnet_compiler in Visual Studio 2010?

I'm having some trouble with namespacing for a web application project - front-end files are being compiled into separate assemblies under the ASPX.directory1_director2_directoryn_filename namespace ...
1
vote
4answers
181 views

What is the point of command line C# compilation?

I always use Visual Studio to do this, and yet even MSDN repeatedly refers to command line approaches in compilation and deployment scenarios. This guy wants to do only command line, and is lauded ...
18
votes
1answer
286 views

C# compiler bug or normal COM oddity?

C# 4, to simplify COM interop, allow callers to COM interfaces to omit the ref keyword in front of arguments for by ref parameters. I was surprised to see today that this also applies to extension ...
1
vote
1answer
359 views

Setting MS C# compiler options via environmental variables?

Is there any way to set default options passed to csc.exe? In particular, I'm interested in supressing copyright messages. For example, for cl.exe and ml.exe I have CL = /nologo ML = /nologo
5
votes
3answers
185 views

csc.exe and inter-dependent assemblies

I've been working on a project, and as it's grown I realize that two parts that cannot be joined together are inter-dependent. Let's call these two parts a.exe and b.dll. b.dll provides an ...
0
votes
1answer
541 views

MSBuild is saying I need a Main method for a library compilation

I'm trying to use MSBuild to compile my ASP.NET MVC3 applicaiton. Since DLL's don't require a Main method and I have specified that the target is a Library, why is the compiler throwing the following ...
0
votes
2answers
729 views

MSBuild reference assembly not being included in build

I can build my project with the following command... csc /reference:lib\Newtonsoft.Json.dll SomeSourceFile.cs ... but when I use this command... msbuild MyProject.csproj ... with the following ...
1
vote
2answers
412 views

Running the C# compiler from a C# program

I am trying to build a C# program that converts a different language into C# code. I have the program working fine, converting the code and writing it to a .cs file. I want to have this file ...
1
vote
2answers
359 views

C# compiler does not find dlls ; solution compiled in VS2010

I have a C# solution and some referenced dll-s. Even though when compiling in visual studio(vs2010) it appears as it succeeded, when using the C# compiler it fails: missing dll apparently.. csc ...
0
votes
0answers
687 views

C# extern alias

I have two assemblies with the exact same interface (lets call them Assem1 and Assem2) Is it possible to use extern alias in order to call methods of Assem1 from Assem2? The source code is something ...
0
votes
2answers
696 views

NANT CSC Build Failure: References Missing?

I have the following NANT CSC target for building winexe: <csc target="winexe" output="${Deploy.dir}\VMIS.exe" debug="${debug}"> <sources> <include name="${App.dir}\**\*.cs" /> ...

1 2