-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCopyDebuggerFiles.sh
58 lines (50 loc) · 1.46 KB
/
CopyDebuggerFiles.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh
# This script requires the following files to be present in the same location as this script file:
# ConcordEE.vsdconfig
# ConcordEE.deps.json
# ConcordEE.dll
# default.vsdbg-config.json
# Microsoft.Cci.CodeModel.dll
# Microsoft.Cci.CodeModelToIL.dll
# Microsoft.Cci.ILGenerator.dll
# Microsoft.Cci.MetadataHelper.dll
# Microsoft.Cci.MetadataModel.dll
# Microsoft.Cci.MutableCodeModel.dll
# Microsoft.Cci.MutableMetadataModel.dll
# Microsoft.Cci.PdbReader.dll
# Microsoft.Cci.PeReader.dll
# Microsoft.Cci.PeWriter.dll
# Microsoft.Cci.SourceModel.dll
# SynergyParser.dll
__CopyLocation="$HOME/.vs-debugger/vs2022"
dotnetVersion=$(dotnet --version)
# Echo a message and exit with a failure
fail()
{
echo
echo "$1"
exit 1
}
if [ -z "$dotnetVersion" ]
then
fail "dotnet is not installed. Please install dotnet before continuing."
else
echo "dotnet version is: $dotnetVersion"
fi
if [ ! -d "$__CopyLocation" ]
then
fail "Copy Location $__CopyLocation does not exist"
else
# copy assembly files
for f in *.dll
do
cp -fv "$f" "$__CopyLocation" || fail "Command failed: 'cp -fv \"$f\" \"$__CopyLocation\"'"
done
# copy json files
for f in *.json
do
cp -fv "$f" "$__CopyLocation" || fail "Command failed: 'cp -fv \"$f\" \"$__CopyLocation\"'"
done
# copy .vsdconfig file
cp -fv "ConcordEE.vsdconfig" "$__CopyLocation" || fail "Command failed: 'cp -fv \"ConcordEE.vsdconfig\" \"$__CopyLocation\"'"
fi