Giter Site home page Giter Site logo

Comments (3)

ildar-shaimordanov avatar ildar-shaimordanov commented on June 18, 2024 1

You can make it a bit shorter and better. Some improvements:

  • no call for binaries
  • %~f0 instead %~dpn0.bat
  • add >&2 to output error messages to STDERR.
  • goto :EOF is transparent for %ERRORLEVEL%, so no needs to exit /b %ERRORLEVEL%. But you can leave your original command for sure.
  • no dancing around batch_start_label_cs_hybrid now. It's obviously shorter and clearer: the caret in @rem ^ tells cmd.exe to concatenate it with the next line before executing, thus you don't need to goto :LABEL and :LABEL and too complicated code to exclude the first line. And if you want, you can shorten it further replacing findstr /v /b "@rem ^" with more +1.
@rem ^
/*
@echo off

if exist "%~dpn0.exe" (
	"%~dpn0.exe" %*
	goto :EOF
)

setlocal

:: Additional options to csc.exe (like /r:"references")
set CSC_OPS=

:: Runner options
set CS_FAIL_EXIT_CODE=1001

:: find csc.exe
set "csc="
for /r "%SystemRoot%\Microsoft.NET\Framework\" %%# in ("*csc.exe") do  set "csc=%%#"

if not exist "%csc%" (
	echo Error: no .net framework installed>&2
	exit /b %CS_FAIL_EXIT_CODE%
)

findstr /v /b "@rem ^" "%~f0" >"%~f0.cs" || (
	echo Error: fail to prepare executable>&2
	exit /b %CS_FAIL_EXIT_CODE%
)

"%csc%" /nologo %CSC_OPS% /out:"%~dpn0.exe" "%~f0.cs" || (
	exit /b %CS_FAIL_EXIT_CODE%
)

del "%~f0.cs"

"%~dpn0.exe" %*
goto :EOF

*/
using System;

public class Program
{
	public static int Main(string[] Argv)
	{
		Console.WriteLine("Hello, world!");
		return 42;
	}
}

from batch.scripts.

npocmaka avatar npocmaka commented on June 18, 2024

Thanks. Probably I'll have time to check it at the weekend. Is really @rem ^ works fine at the beginning of the file? It is also possible to use msbuild to reduce the redundant output: https://github.com/npocmaka/batch.scripts/blob/master/hybrids/.net/msbuild/checkPort.bat

from batch.scripts.

ildar-shaimordanov avatar ildar-shaimordanov commented on June 18, 2024

Is really @Rem ^ works fine at the beginning of the file?

Yes. before publishing I tested it.

from batch.scripts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.