0
votes
1answer
25 views
CSC Command Parameters Useage for C# Build Time
Hello.
ParseXSD.cs
using System;
using System.Collections;
using System.Xml;
using System.Xml.Schema;
class XmlSchemaTraverseExample
{
static void Main()
{
// Add the customer …
0
votes
2answers
87 views
Determine C# compiler version used to compile current program
I'm upgrading a solution from .NET 2.0 to 3.5. One of the projects is a code-generator app that is compiled and then executed via a post-build event. When it is run, it generates some code and invokes …
3
votes
2answers
100 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?
0
votes
1answer
47 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. …
2
votes
0answers
210 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 Any Cpu). When I explicitly mark a module as x64, I get a:
warning CS1607: Assembly …
4
votes
4answers
449 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 …
0
votes
1answer
55 views
CSC task in Msbuild aborts with namespace errors
I have attempted the following:
<!-- Specify the inputs by type and file name -->
<ItemGroup>
<CSFile Include = "$(MSBuildProjectDirectory)\..\Mine.cs"/>
</ItemGroup>
…
2
votes
3answers
255 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" …
0
votes
5answers
229 views
A source compiled with vs2008 produce a binary that is different from the same source compiled directly by csc at command line
Hi all,
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 …
1
vote
3answers
449 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
8answers
440 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?
0
votes
1answer
165 views
Why is my application using CSC during execution
I've been experimenting with the Remotesoft Linker and Mini Deployment tools to create a single native executable (that doesn't need the framework installed) from my managed code. One of the …
0
votes
2answers
197 views
compile ms office interop app from commandline
how do I successfully compile this code from the commandline, using csc.exe, in terms of which dll's I should reference. I would like this to work with Office 2007 as well as Office 2003.
I am use …
2
votes
1answer
144 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
0answers
51 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!? …
