text
stringlengths 0
834k
|
|---|
if %restartprompt%== 1 shutdown /r /t 0 /d WSATools Restart
|
if %restartprompt%== 2 exit
|
pause
|
exit
|
",42.0434782609,122,0.7189762151
|
220022,f33cfd68054b4e1285872ebaceea7a40814a0224,42,bat,Batchfile,pub_get.bat,MKarthikeyan91/sap_connect,3ba24f0c280e267626a0c0c69b2f780458c96210,['MIT'],3.0,2020-03-06T04:49:03.000Z,2021-06-22T17:03:04.000Z,pub_get.bat,MKarthikeyan91/sap_connect,3ba24f0c280e267626a0c0c69b2f780458c96210,['MIT'],,,,pub_get.bat,MKarthikeyan91/sap_connect,3ba24f0c280e267626a0c0c69b2f780458c96210,['MIT'],1.0,2021-04-27T19:10:14.000Z,2021-04-27T19:10:14.000Z,"call flutter packages get --offline
|
cmd /k",21.0,35,0.7857142857
|
220023,f33d1d0a05832167787e7bb9a24f6894274e8749,3886,bat,Batchfile,build.bat,Neftedollar/fsharp,260d60d045f34adc444291e027bfa5d61b8f192c,['MIT'],,,,build.bat,Neftedollar/fsharp,260d60d045f34adc444291e027bfa5d61b8f192c,['MIT'],,,,build.bat,Neftedollar/fsharp,260d60d045f34adc444291e027bfa5d61b8f192c,['MIT'],,,,"@echo off
|
:: Check prerequisites
|
set _msbuildexe=""%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe""
|
if not exist %_msbuildexe% set _msbuildexe=""%ProgramFiles%\MSBuild\14.0\Bin\MSBuild.exe""
|
if not exist %_msbuildexe% set _msbuildexe=""%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe""
|
if not exist %_msbuildexe% set _msbuildexe=""%ProgramFiles%\MSBuild\12.0\Bin\MSBuild.exe""
|
if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see http://www.microsoft.com/en-us/download/details.aspx?id=40760. && goto :eof
|
set msbuildflags=/maxcpucount
|
set _ngenexe=""%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe""
|
if not exist %_ngenexe% echo Note: Could not find ngen.exe.
|
set REGEXE32BIT=reg.exe
|
if not ""%OSARCH%""==""x86"" set REGEXE32BIT=%WINDIR%\syswow64\reg.exe
|
::See https://stackoverflow.com/a/17113667/111575 on 2^>NUL for suppressing the error ""ERROR: The system was unable to find the specified registry key or value."" from reg.exe, this fixes #3619
|
FOR /F ""tokens=2* delims= "" %%A IN ('%REGEXE32BIT% QUERY ""HKLM\Software\Microsoft\Microsoft SDKs\NETFXSDK\4.6.2\WinSDK-NetFx40Tools"" /v InstallationFolder 2^>NUL') DO SET WINSDKNETFXTOOLS_x86=%%B
|
if ""%WINSDKNETFXTOOLS_x86%""=="""" FOR /F ""tokens=2* delims= "" %%A IN ('%REGEXE32BIT% QUERY ""HKLM\Software\Microsoft\Microsoft SDKs\NETFXSDK\4.6.1\WinSDK-NetFx40Tools"" /v InstallationFolder 2^>NUL') DO SET WINSDKNETFXTOOLS_x86=%%B
|
if ""%WINSDKNETFXTOOLS_x86%""=="""" FOR /F ""tokens=2* delims= "" %%A IN ('%REGEXE32BIT% QUERY ""HKLM\Software\Microsoft\Microsoft SDKs\NETFXSDK\4.6\WinSDK-NetFx40Tools"" /v InstallationFolder 2^>NUL') DO SET WINSDKNETFXTOOLS_x86=%%B
|
if ""%WINSDKNETFXTOOLS_x86%""=="""" FOR /F ""tokens=2* delims= "" %%A IN ('%REGEXE32BIT% QUERY ""HKLM\Software\Microsoft\Microsoft SDKs\Windows\v8.1A\WinSDK-NetFx40Tools"" /v InstallationFolder 2^>NUL') DO SET WINSDKNETFXTOOLS_x86=%%B
|
if ""%WINSDKNETFXTOOLS_x86%""=="""" FOR /F ""tokens=2* delims= "" %%A IN ('%REGEXE32BIT% QUERY ""HKLM\Software\Microsoft\Microsoft SDKs\Windows\v8.0A\WinSDK-NetFx40Tools"" /v InstallationFolder 2^>NUL') DO SET WINSDKNETFXTOOLS_x86=%%B
|
if ""%WINSDKNETFXTOOLS_x86%""=="""" FOR /F ""tokens=2* delims= "" %%A IN ('%REGEXE32BIT% QUERY ""HKLM\Software\Microsoft\Microsoft SDKs\Windows\v7.1\WinSDK-NetFx40Tools"" /v InstallationFolder 2^>NUL') DO SET WINSDKNETFXTOOLS_x86=%%B
|
if ""%WINSDKNETFXTOOLS_x86%""=="""" FOR /F ""tokens=2* delims= "" %%A IN ('%REGEXE32BIT% QUERY ""HKLM\Software\Microsoft\Microsoft SDKs\Windows\v7.0A\WinSDK-NetFx40Tools"" /v InstallationFolder 2^>NUL') DO SET WINSDKNETFXTOOLS_x86=%%B
|
set WINSDKNETFXTOOLS_x64=%WINSDKNETFXTOOLS_x86%x64\
|
set SN32=""%WINSDKNETFXTOOLS_x86%sn.exe""
|
set SN64=""%WINSDKNETFXTOOLS_x64%sn.exe""
|
rem Disable strong-name validation for binaries that are delay-signed with the microsoft key
|
echo %SN32% -q -Vr *,b03f5f7f11d50a3a
|
%SN32% -q -Vr *,b03f5f7f11d50a3a
|
if /i ""%PROCESSOR_ARCHITECTURE%""==""AMD64"" (
|
echo %SN64% -q -Vr *,b03f5f7f11d50a3a
|
%SN64% -q -Vr *,b03f5f7f11d50a3a
|
)
|
::Build
|
%_ngenexe% install .\.nuget\NuGet.exe
|
.\.nuget\NuGet.exe restore packages.config -PackagesDirectory packages -ConfigFile .nuget\nuget.config
|
@if ERRORLEVEL 1 echo Error: Nuget restore failed && goto :failure
|
%_ngenexe% install packages\FSharp.Compiler.Tools.4.1.27\tools\fsc.exe
|
set BUILD_NET40=1
|
set TEST_NET40_COREUNIT_SUITE=1
|
%_msbuildexe% src\fsharp-proto-build.proj /p:Configuration=Proto
|
@if ERRORLEVEL 1 echo Error: ""%_msbuildexe% src\fsharp-proto-build.proj"" failed && goto :failure
|
%_ngenexe% install Proto\net40\bin\fsc-proto.exe
|
%_msbuildexe% %msbuildflags% build-everything.proj /p:TargetDotnetProfile=net40 /p:Configuration=Release
|
@if ERRORLEVEL 1 echo Error: ""%_msbuildexe% %msbuildflags% src\fsharp-library-build.proj /p:TargetDotnetProfile=net40 /p:Configuration=Release"" failed && goto :failure
|
@echo ""Finished""
|
goto :eof
|
:failure
|
exit /b 1
|
",58.0,229,0.7524446732
|
220024,f33d3e3836db83858ca4237e7b0a15ec590d75e3,1059,bat,Batchfile,debug_prog/debug_prog.sim/sim_1/impl/timing/xsim/compile.bat,vhall415/Senior_Design_Vivado_Projects,05519588cb94e97e53c900857925d48bd62d317a,['Apache-2.0'],,,,debug_prog/debug_prog.sim/sim_1/impl/timing/xsim/compile.bat,vhall415/Senior_Design_Vivado_Projects,05519588cb94e97e53c900857925d48bd62d317a,['Apache-2.0'],,,,debug_prog/debug_prog.sim/sim_1/impl/timing/xsim/compile.bat,vhall415/Senior_Design_Vivado_Projects,05519588cb94e97e53c900857925d48bd62d317a,['Apache-2.0'],,,,"@echo off
|
REM ****************************************************************************
|
REM Vivado (TM) v2017.4 (64-bit)
|
REM
|
REM Filename : compile.bat
|
REM Simulator : Xilinx Vivado Simulator
|
REM Description : Script for compiling the simulation design source files
|
REM
|
REM Generated by Vivado on Thu Feb 08 19:59:16 -0800 2018
|
REM SW Build 2086221 on Fri Dec 15 20:55:39 MST 2017
|
REM
|
REM Copyright 1986-2017 Xilinx, Inc. All Rights Reserved.
|
REM
|
REM usage: compile.bat
|
REM
|
REM ****************************************************************************
|
echo ""xvlog --incr --relax -L smartconnect_v1_0 -L axi_protocol_checker_v2_0_1 -L axi_vip_v1_1_1 -L processing_system7_vip_v1_0_3 -L xilinx_vip -prj design_2_wrapper_vlog.prj""
|
call xvlog --incr --relax -L smartconnect_v1_0 -L axi_protocol_checker_v2_0_1 -L axi_vip_v1_1_1 -L processing_system7_vip_v1_0_3 -L xilinx_vip -prj design_2_wrapper_vlog.prj -log xvlog.log
|
call type xvlog.log > compile.log
|
if ""%errorlevel%""==""1"" goto END
|
if ""%errorlevel%""==""0"" goto SUCCESS
|
:END
|
exit 1
|
:SUCCESS
|
exit 0
|
",40.7307692308,189,0.6694995279
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.