Click here to Skip to main content
15,890,438 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Installing a Windows Service Pin
Jamie Nordmeyer15-May-03 6:52
Jamie Nordmeyer15-May-03 6:52 
GeneralLoading dinamically assemblies from COM+ .NET components Pin
fennnan12-May-03 23:32
fennnan12-May-03 23:32 
GeneralRe: Loading dinamically assemblies from COM+ .NET components Pin
Simon Gregory3-Jun-03 13:43
Simon Gregory3-Jun-03 13:43 
GeneralRe: Loading dinamically assemblies from COM+ .NET components Pin
fennnan5-Jun-03 21:14
fennnan5-Jun-03 21:14 
GeneralRe: Loading dinamically assemblies from COM+ .NET components Pin
Simon Gregory5-Jun-03 21:54
Simon Gregory5-Jun-03 21:54 
GeneralControl licensing Pin
J. Dunlap12-May-03 9:48
J. Dunlap12-May-03 9:48 
GeneralCSC.exe Pin
Steve McLenithan11-May-03 3:39
Steve McLenithan11-May-03 3:39 
GeneralRe: CSC.exe Pin
Stephane Rodriguez.11-May-03 4:12
Stephane Rodriguez.11-May-03 4:12 
I guess that, because you haven't installed the VS.NET IDE, you don't have the vcvars32.bat which sets all paths.

Here it is, just in case :

---- BEGINS HERE ----
@SET VSINSTALLDIR=C:\vc7\Common7\IDE
@SET VCINSTALLDIR=C:\vc7
@SET FrameworkDir=C:\WINNT\Microsoft.NET\Framework
@SET FrameworkVersion=v1.0.3705
@SET FrameworkSDKDir=C:\vc7\FrameworkSDK
@rem Root of Visual Studio common files.

@if "%VSINSTALLDIR%"=="" goto Usage
@if "%VCINSTALLDIR%"=="" set VCINSTALLDIR=%VSINSTALLDIR%

@rem
@rem Root of Visual Studio ide installed files.
@rem
@set DevEnvDir=%VSINSTALLDIR%

@rem
@rem Root of Visual C++ installed files.
@rem
@set MSVCDir=%VCINSTALLDIR%\VC7

@rem
@echo Setting environment for using Microsoft Visual Studio .NET tools.
@echo (If you also have Visual C++ 6.0 installed and wish to use its tools
@echo from the command line, run vcvars32.bat for Visual C++ 6.0.)
@rem

@REM %VCINSTALLDIR%\Common7\Tools dir is added only for real setup.

@set PATH=%DevEnvDir%;%MSVCDir%\BIN;%VCINSTALLDIR%\Common7\Tools;%VCINSTALLDIR%\Common7\Tools\bin\prerelease;%VCINSTALLDIR%\Common7\Tools\bin;%FrameworkSDKDir%\bin;%FrameworkDir%\%FrameworkVersion%;%PATH%;
@set INCLUDE=%MSVCDir%\ATLMFC\INCLUDE;%MSVCDir%\INCLUDE;%MSVCDir%\PlatformSDK\include\prerelease;%MSVCDir%\PlatformSDK\include;%FrameworkSDKDir%\include;%INCLUDE%
@set LIB=%MSVCDir%\ATLMFC\LIB;%MSVCDir%\LIB;%MSVCDir%\PlatformSDK\lib\prerelease;%MSVCDir%\PlatformSDK\lib;%FrameworkSDKDir%\lib;%LIB%

@goto end

:Usage

@echo. VSINSTALLDIR variable is not set.
@echo.
@echo SYNTAX: %0

@goto end

:end

---- ENDS HERE ----

Replace the FrameworkVersion variable with the appropriate value. Since you seem not to have the VS.NET IDE, in fact only a fraction of those variables are useful. For csc.exe, what's important to have is the PATH variable.
My recommendation is to directly add the appropriate paths in your user environment variables, from the OS config panel.

GeneralRe: CSC.exe Pin
Steve McLenithan11-May-03 4:34
Steve McLenithan11-May-03 4:34 
GeneralRe: CSC.exe Pin
leppie11-May-03 5:00
leppie11-May-03 5:00 
GeneralRe: CSC.exe Pin
IrvTheSwirv13-May-03 1:21
sussIrvTheSwirv13-May-03 1:21 
GeneralRe: CSC.exe Pin
Russell Morris18-May-03 5:50
Russell Morris18-May-03 5:50 
GeneralRe: CSC.exe Pin
Vasudevan Deepak Kumar16-May-03 22:47
Vasudevan Deepak Kumar16-May-03 22:47 
GeneralNetwork packet capture support in .net Pin
Hashim Saleem10-May-03 14:10
Hashim Saleem10-May-03 14:10 
GeneralRe: Network packet capture support in .net Pin
Simon Gregory3-Jun-03 13:40
Simon Gregory3-Jun-03 13:40 
GeneralLoad Bitmap problem Pin
aw1ay10-May-03 8:21
aw1ay10-May-03 8:21 
GeneralRe: Load Bitmap problem Pin
Tomas Petricek11-May-03 6:36
Tomas Petricek11-May-03 6:36 
Generaldynamically calling assemblies Pin
klawipo10-May-03 1:45
klawipo10-May-03 1:45 
GeneralRe: dynamically calling assemblies Pin
klawipo12-May-03 9:57
klawipo12-May-03 9:57 
GeneralRe: dynamically calling assemblies Pin
klawipo12-May-03 10:00
klawipo12-May-03 10:00 
GeneralStarting a process with a differant profile Pin
Jamie Nordmeyer8-May-03 9:59
Jamie Nordmeyer8-May-03 9:59 
QuestionRegistry in .NET world? Pin
Kant8-May-03 8:35
Kant8-May-03 8:35 
AnswerRe: Registry in .NET world? Pin
The Limey16-May-03 9:07
The Limey16-May-03 9:07 
GeneralSearching in files Pin
Scott Lee8-May-03 5:21
Scott Lee8-May-03 5:21 
GeneralUnmanaged Metadata API Pin
Mike_V7-May-03 17:29
Mike_V7-May-03 17:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.