有人可能想知道 - 如何制作一个带有嵌入式c#代码的.bat
文件来“即时”编译和执行它?
是否可以在一个文件中同时使用批处理指令和c#代码?
答案 0 :(得分:2)
是的,有可能。
这是一个例子:
<强> Example.bat 强>
/* 2> nul
@echo off && cls && echo Loading... && echo.
set WinDirNet=%WinDir%\Microsoft.NET\Framework
if exist "%WinDirNet%\v2.0.50727\csc.exe" set csc="%WinDirNet%\v2.0.50727\csc.exe"
if exist "%WinDirNet%\v3.5\csc.exe" set csc="%WinDirNet%\v3.5\csc.exe"
if exist "%WinDirNet%\v4.0.30319\csc.exe" set csc="%WinDirNet%\v4.0.30319\csc.exe"
if "%csc%" == "" ( echo .NET Framework not found! && echo. && pause && exit )
%csc% /nologo /out:"%~dpnx0.exe" "%~dpnx0"
if not "%ERRORLEVEL%" == "0" ( echo. && pause && exit )
cls
"%~dpnx0.exe" %*
del "%~dpnx0.exe"
exit
*/
using System;
class Program
{
static void Main()
{
System.Console.WriteLine("Hello, World!\r\nI am at " + System.Environment.Version);
}
}
解释:这个批处理文件由两部分组成:第一部分是批处理代码,第二部分是c#代码。执行时,命令shell将忽略c#-comments /*
和*/
作为错误行,并仅执行批处理代码。批处理块结束时的正常退出命令,执行永远不会到达c#代码
该文件的批处理部分搜索csc.exe
(.NET编译器)。找到后,批处理文件将自身传递到csc.exe
以编译c#代码。由于注释(/ *和* /),批处理部分被忽略,只编译c#部分。编译后生成的.exe文件在执行后执行并删除。
编辑:2> nul
将标准错误(描述符2)重定向为空以禁止“未找到”#39;消息。
答案 1 :(得分:1)
您可以注释掉批处理代码,但无法避免将批处理注释作为错误处理。
可以抑制错误本身,但至少会显示第一行。
/* 2>NUL
@echo off
...
start the C# code
*/
...
C#-Code
由于C#似乎不接受:@
个字符之一作为文件中的第一个字符,因此我无法看到完美解决方案的可能方法。
答案 2 :(得分:0)
方法很少。
1)与先前的答案类似,但具有自动检测到的.net框架的最新版本:
// 2>nul||@goto :batch
/*
@echo off
setlocal
:: find csc.exe
set "csc="
for /r "%SystemRoot%\Microsoft.NET\Framework\" %%# in ("*csc.exe") do set "csc=%%#"
if not exist "%csc%" (
echo no .net framework installed
exit /b 10
)
if not exist "%~n0.exe" (
call %csc% /nologo /w:0 /out:"%~n0.exe" "%~dpsfnx0" || (
exit /b %errorlevel%
)
)
%~n0.exe %*
endlocal & exit /b %errorlevel%
*/
using System;
class QE {
static void Main(string[] args) {
Console.WriteLine("Echo from C#");
}
}
2)在Windows 10中,默认情况下安装了.net框架,msbuild允许内联任务,这使内存编译(即-没有其他exe文件)和嵌入emebedding成为可能。 xml,这意味着没有冗余输出。请注意,命令行参数保存在CMD_ARGS
环境变量中:
<!-- :
@echo off
echo -^- FROM BATCH
set "CMD_ARGS=%*"
:::::: Starting C# code :::::::
:: searching for msbuild location
for /r "%SystemRoot%\Microsoft.NET\Framework\" %%# in ("*msbuild.exe") do set "msb=%%#"
if not defined msb (
echo no .net framework installed
exit /b 10
)
rem :::::::::: calling msbuid :::::::::
call %msb% /nologo /noconsolelogger "%~dpsfnx0"
rem ::::::::::::::::::::::::::::::::::::
exit /b %errorlevel%
-->
<Project ToolsVersion="$(MSBuildToolsVersion)" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="_">
<_/>
</Target>
<UsingTask
TaskName="_"
TaskFactory="CodeTaskFactory"
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v$(MSBuildToolsVersion).dll" >
<Task>
<Reference Include="$(MSBuildToolsPath)\System.Windows.Forms.dll"/>
<Using Namespace="System" />
<Code Type="Method" Language="cs">
<![CDATA[
public override bool Execute(){
MyMethod();
return true;
}
void MyMethod(){
Console.WriteLine("Whoa");
String CMD_ARGS=Environment.GetEnvironmentVariable("CMD_ARGS");
System.Console.WriteLine("Echo from C# with msBuild -- "+"$(MSBuildToolsVersion)");
}
]]>
</Code>
</Task>
</UsingTask>
</Project>
3),具有powershell和Add-Type:
<# : batch portion
@echo off & setlocal
set "CMD_ARGS=%~1"
powershell -noprofile "iex (${%~f0} | out-string)"
goto :EOF
: end batch / begin powershell #>
param($psArg1 = $env:psArg1)
$CS = @"
namespace PS {
public class CS
{
public static void csEcho(string arg)
{ System.Console.WriteLine("echo from C# " + arg); }
}
}
"@
Add-Type -TypeDefinition $CS -Language CSharp
[PS.CS]::csEcho($psArg1 + " and PowerShell")
4)还有一点要注意的是-如果您不使用P / Invoke,使用JScript.net可能会更方便,它需要更少的代码并且具有相似的语法,并可以访问。净东西,没有多余的输出:
@if (@X)==(@Y) @end /* JScript comment
@echo off
setlocal
for /f "tokens=* delims=" %%v in ('dir /b /s /a:-d /o:-n "%SystemRoot%\Microsoft.NET\Framework\*jsc.exe"') do (
set "jsc=%%v"
)
if not exist "%~n0.exe" (
"%jsc%" /nologo /out:"%~n0.exe" "%~dpsfnx0"
)
%~n0.exe %*
endlocal & exit /b %errorlevel%
*/
import System;
Console.Write("Echo from .NET")