diff --git a/.gitattributes b/.gitattributes index 8cf8104b2a..55bdc47fa2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -27,7 +27,6 @@ FwHelpAbout.cs -whitespace LICENSE -whitespace RealSplashScreen.cs -whitespace run-app -whitespace -Bin/ilrepack-assemblies -whitespace *.json -whitespace *.js -whitespace Src/LexText/ParserCore/ParserCoreTests/**/*.txt -whitespace diff --git a/Bin/ilrepack-assemblies b/Bin/ilrepack-assemblies deleted file mode 100755 index bc0d30ea84..0000000000 --- a/Bin/ilrepack-assemblies +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -# Repack an assembly. -# Created 2018-08-13 -# -# Usage: ./ilrepack-assemblies /path/to/PrimaryAssembly.dll [/path/to/OtherAssemblies.dll ...] -# -# Original PrimaryAssembly.dll is left as PrimaryAssembly.dll~. -# -# Environment variables: -# ILREPACK - path to ILRepack.exe to use. - -set -e -o pipefail -u - -PRIMARY_ASSEMBLY="$1" -ILREPACK="${ILREPACK-"$(dirname "$0")/../packages/ILRepack.2.0.15/tools/ILRepack.exe"}" -TMP_ASSEMBLY=$(mktemp -d)/"$(basename "$PRIMARY_ASSEMBLY")" -# Set ASSEMBLIES to the remaining arguments. -shift -ASSEMBLIES="${@}" - -LIBSARGS=/lib:"$(dirname "$PRIMARY_ASSEMBLY")" -mono "$ILREPACK" /out:"$TMP_ASSEMBLY" "$LIBSARGS" "$PRIMARY_ASSEMBLY" $ASSEMBLIES -mv "$PRIMARY_ASSEMBLY" "$PRIMARY_ASSEMBLY~" -mv "$TMP_ASSEMBLY" "$PRIMARY_ASSEMBLY" - -for assembly in $ASSEMBLIES; do - if [[ -f $assembly.config ]]; then - echo >&2 "ilrepack-assemblies($$): WARNING: Not including settings from $assembly.config for $PRIMARY_ASSEMBLY." - fi -done diff --git a/Directory.Packages.props b/Directory.Packages.props index fd6974bad6..4c64f845ad 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -103,6 +103,7 @@ ============================================================= --> + diff --git a/Src/FwParatextLexiconPlugin/FwParatextLexiconPlugin.csproj b/Src/FwParatextLexiconPlugin/FwParatextLexiconPlugin.csproj index 4627293a85..07e0ca9cad 100644 --- a/Src/FwParatextLexiconPlugin/FwParatextLexiconPlugin.csproj +++ b/Src/FwParatextLexiconPlugin/FwParatextLexiconPlugin.csproj @@ -28,6 +28,7 @@ + @@ -53,4 +54,5 @@ + \ No newline at end of file diff --git a/Src/FwParatextLexiconPlugin/ILRepack.targets b/Src/FwParatextLexiconPlugin/ILRepack.targets index bdc0217354..c6bb8d8443 100644 --- a/Src/FwParatextLexiconPlugin/ILRepack.targets +++ b/Src/FwParatextLexiconPlugin/ILRepack.targets @@ -6,9 +6,7 @@ This software is licensed under the LGPL, version 2.1 or later --> - ../.. - "$(FwrtPath)\packages\ILRepack.2.0.16\tools\ILRepack.exe" - mono "$(FwrtPath)\packages\ILRepack.2.0.16\tools\ILRepack.exe" + "$(PkgILRepack)\tools\ILRepack.exe" $(OutputPath)/FwParatextLexiconPlugin.dll @@ -27,16 +25,17 @@ This software is licensed under the LGPL, version 2.1 or later - - - - + + + - - + +