Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
1answer
195 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 ...
10
votes
2answers
2k views

MSBUILD / csc: Cleanest way of handling x64 mscorlib warning 1607

I'm trying to use VS08SP1's default project system to invoke a C# compile in explicit x64 mode (as distinct from AnyCpu). When I explicitly mark a module as x64, I get a: warning CS1607: Assembly ...
8
votes
1answer
324 views

For what reason would I choose a C# compiler file alignment setting other than 512?

I can see in MSDN how to change the file alignment for C# compilation (via project settings and the command line). I have googled and seen articles explaining that a file alignment of 512 Bytes ...
8
votes
2answers
618 views

Including FSharp.Core in a C# project: resolving type collisions

I'm using some F# types (Matrix et al) from C# and so I need to reference the FSharp.Core assembly in my C# project. So far, so good. However, there are apparently some types defined in mscorlib.dll ...
5
votes
3answers
51 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 ...
5
votes
2answers
731 views

'Arrays as attribute arguments is not CLS-compliant' warning, but no type information given

When compiling my solution, I get several warnings of the following: warning CS3016: Arrays as attribute arguments is not CLS-compliant No other information on what type is not compliant is given. ...
5
votes
5answers
2k views

Work-around for C# CodeDom causing stack-overflow (CS1647) in csc.exe?

I've got a situation where I need to generate a class with a large string const. Code outside of my control causes my generated CodeDom tree to be emitted to C# source and then later compiled as part ...
5
votes
8answers
2k views

Is it possible to install c# compiler w/o Visual Studio?

I want to build projects from command line. Is it possible to deploy c# compiler without installing Visual Studio?
4
votes
2answers
126 views

How to generate IL source code with csc (C# compiler) or dmcs (mono C# compiler)?

gcc has an option of -s to generate assembly source code. Does csc (MS C# compiler) or dmcs (mono C# compiler) have equivalence? I mean do those compilers provide an option to generate IL source code ...
4
votes
1answer
624 views

Is there any FREE custom search api like google custom search?

I'm using google JSON/Atom Custom Search API now. The problem is the total queries are only 100 per day. Need to pay for extra queries. Is there any FREE Custom Search API? Maybe from Bing or Yahoo? ...
3
votes
2answers
96 views

“Proper” way to find path to C# compiler? [closed]

Possible Duplicate: C# - How to get csc.exe path? Is there a "proper" way to find the path to the C# compiler on a given system? E.g. for Java, the "proper" way is to use the ...
3
votes
1answer
379 views

How do i include references to web services in NANT or csc.exe?

Im trying to automate our build process. To do this i need to compile the app_code in a asp.Net website to a dll so i can run NUnit test against the code. Before you suggest that i just use a class ...
3
votes
2answers
444 views

C# compiling to MSIL code

Does the Microsoft C# compiler (CSC.exe) have an option to output the Intermediate Language files? Kind of like the -S switch does in GCC?
2
votes
5answers
109 views

Why is the .ctor() created when I compile C# code into IL?

With this simple C# code, I run csc hello.cs; ildasm /out=hello.txt hello.exe. class Hello { public static void Main() { System.Console.WriteLine("hi"); } } This is the IL code ...
2
votes
1answer
268 views

How to include app.config file with fsc.exe (F#) or csc.exe (C#)?

I have a console application that uses an app.config file however I can't figure out how to include that in the command line parameters so that the output will create the Program.exe.config when I ...
2
votes
4answers
292 views

Compiler command line for C# projects

Visual Studio shows the exact command line use to compiler and link a C++ project under Project Properties -> C/C++ -> Command Line and Linker ->Command Line, but, I was not able to find similar ...
2
votes
1answer
345 views

Using routing with webforms - CreateInstanceFromVirtualPath sometimes very slow

I am using routing with my ASP.NET WebForms application, using the technique described by Phil Haack: http://haacked.com/archive/2008/03/11/using-routing-with-webforms.aspx This works well most of ...
2
votes
1answer
661 views

Error referencing System.Web.Mvc from csc in Visual Studio 2010 RTM

csc /target:library /reference:System.dll,System.Web.dll,System.Web.Mvc.dll Foo.cs Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1 Copyright (C) Microsoft Corporation. All rights ...
2
votes
3answers
935 views

How to build a .NET website using Nant

I usually use web applications in Visual Studio and the MSBUILD taks in Nant builds them without any problems: <msbuild project="MySolution.sln"> arg value="/property:Configuration=release" ...
2
votes
1answer
182 views

Why does the compiler have a problem with this line of code?

The entire solution builds fine in Visual Studio, but when I run the Nant script to compile the website I get several errors on this line: string[] qs = (Request.QueryString["e"] ?? String.Empty) ...
1
vote
1answer
50 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
1
vote
2answers
135 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
117 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 ...
1
vote
1answer
71 views

Build with nant and reference libraries in subdirectories

I'm creating bild-file for a project containing several 3rd-party libraries located inside a lib-folder. So my build-script looks like this: <csc target="library" ....> <sources> ...
1
vote
2answers
245 views

App.config and csc.exe

I've created some C# console programs to test my stored procedures in a MSSQL database. I'm storing the connection string to the database in app.config. Each class in the project references the ...
1
vote
1answer
168 views

Where is the .net command line compiler

Where is the .net command line compiler (csc.exe) located after install. Im trying to set up my path to compile c# applications from the command line, but i cant find where csc.exe has been installed. ...
1
vote
1answer
342 views

Assemble reference error while compiling C# project using NANT even after giving the reference

My solution has multiple projects with Internal reference to each other. Project name DataAccess references Objects project. In my NANT script I first compile the Objects folder which succeeds and ...
1
vote
1answer
41 views

Image with images around it in css

How would code this in css and html? Should I do it with absolute? Or float it somehow? Any Ideas?
1
vote
2answers
830 views

Visual Studio gone bonkers: 'The directory name is invalid' error when trying to compile

For some very odd reason, my Visual Studio 2008, when trying to compile a C# project, tries to write the output of the executable to a directory with the same name as an executable, at least it seems ...
1
vote
4answers
580 views

how to ensure that VSVARS32.BAT batch file have permanent effect?

If I need to use microsoft C# compiler from the normal command prompt, it says right here how and it says right here how I set the environment variable (by running VSVARS32.BAT). I execute it and ...
1
vote
1answer
280 views

Problem with building with csc task in Ant

I have an ant build target using csc: <target name="compile"> <echo>Starting compiling ServiceLauncher</echo> <csc optimize="true" debug="true" warnLevel="1" ...
1
vote
3answers
548 views

Does VS2010 use csc.exe / vbc.exe (directly or indirectly) to compile relevant projects?

Pretty much as the title suggests. I can't find any proof that DevEnv.exe actually calls these at any point.
1
vote
1answer
305 views

NAnt - Including source files in a csc task outside of the base directory

I am just starting to pick up NAnt as a replacement for MSBuild in our CruiseControl project. One of the things we do inside a set of projects is link in a single AssemblyInfo.cs file from outside of ...
1
vote
1answer
107 views

Why are my output file sizes different when using CSC.EXE vs. Devenv?

I am playing with Nant and CSC. I notice that a debug version of my dll is 140k if compiled via CSC and nant build scripts. However if i build a debug version in the Visual Studio env, it is at 203k!? ...
1
vote
4answers
511 views

A source compiled with vs2008 produce a binary that is different from the same source compiled directly by csc at command line

I can't understand why If I compile the same source with Visual Studio 2008 (MSBuild) and then with csc (or NANT) at command line I can't obtain exacly the same binary file (the same assembly). The ...
1
vote
3answers
2k views

How do you use GAC'd assemblies as references with csc.exe?

I'm compiling from csc.exe (well, CruiseControl is...), and I need to reference a DLL in the GAC. I do not have the correct version of this DLL as a simple file, but there is a correct version in the ...
1
vote
2answers
212 views

Determining the CLR System Directory

The MSDN article on the C# command-line compiler /lib switch specifies the following:- The compiler searches for assembly references that are not fully qualified in the following order: ...
0
votes
1answer
61 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
71 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 ...
0
votes
0answers
150 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
1answer
137 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" /> ...
0
votes
1answer
178 views

XmlSerializer deserializing bug with CSC.EXE

I created a program that works well on my computer(s) and normally also on other computers. However there is one person which is having a problem when run it and I really don't understand why, the ...
0
votes
1answer
95 views

How can I inspect exceptions thrown by c# compiler?

The compiler failed with the following message: "Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information." I know this has something to do with ...
0
votes
0answers
500 views

Windows Phone 7 app build with command line

My windows phone 7 application is successfully built from compilation button of Visual Studio. But, when I try to compile from command line, i get some errors : error CS2001: Impossible de trouver ...
0
votes
1answer
93 views

Specifying source files in CSC

I am using csc directly to compile a C# application but when I specify the source files as "src/main.cs" it fails. I have realised that I need to make them, "src\main.cs". Now, I am wondering if it ...
0
votes
3answers
74 views

About csc.exe, is it neccesary to learn?

I am an intermediate programmer and these days I've been analyzing the CLR, my question is what is the need to learn all the commands of c# command line!!! It's so boring. is it neccesary?
0
votes
2answers
339 views

MSBuild calling incorrect version of csc.exe

I am using team city to call a nant script, currently this nant script is very simplistic and only calls an msbuild task on a single project in the solution. The build is failing, it looks like ...
0
votes
2answers
173 views

merge DLLs n .cs files

A part of big project is a payment system, that I would like to reuse. I want to merge all the class files of this payment system into DLLs so that add them as a reference in all the other projects. ...
0
votes
1answer
588 views

How does the MSBuild CoreCompile Target Identify Reference Assemblies

Can anyone shed any light on how the CoreCompile task in TFS2010 (RC) Microsoft.TeamFoundation.Build targets generates the assembly references that are passed to csc.exe? We are seeing references to ...
0
votes
1answer
171 views

Prevent command window showing when NAnt compiling windows forms application

I have been playing with creating little windows forms apps without visual studio. I create my source in Notepad++ and compile with a NAnt build file. When I run the application a command window is ...

1 2