Граф коммитов

2 Коммитов

Автор SHA1 Сообщение Дата
Derrick Stolee 90e8c1bd69 [REPLACE] Replace old name in all files
This will change many files, and likely not build

Here is the script used to do the replacement:

```

NEWNAME="Scalar"
LOWERNAME="scalar"

for file in $(find . -type f -name '*')
    do
        if [[ $file == *.png ]]
        then
            continue
        fi
        if [[ $file == *.ico ]]
        then
            continue
        fi
        if [[ $file == *cddl1.txt ]]
        then
            continue
        fi
        if [[ $file == *.rc ]]
        then
            continue
        fi
        if [[ $file == *index_v4 ]]
        then
            continue
        fi
        if [[ $file == ./.git/* ]]
        then
            continue
        fi

        sed -i .bak "s/GVFS/$NEWNAME/g" "$file"
        sed -i .bak "s/VFS For Git/$NEWNAME/g" "$file"
        sed -i .bak "s/VFS for Git/$NEWNAME/g" "$file"
        sed -i .bak "s/VFSForGit/$NEWNAME/g" "$file"
        sed -i .bak "s/vfsforgit/$LOWERNAME/g" "$file"
        sed -i .bak "s/VFS/$NEWNAME/g" "$file"
        sed -i .bak "s/gvfs/$LOWERNAME/g" "$file"
    done

git commit -a -s -m "[REPLACE] Replace old name in all files" -m "This will change many files, and likely not build"
git clean -xdf
```

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
2019-08-10 12:41:55 -04:00
Matthew John Cheetham e09bdcf5b8
Add .vsconfig file to declare required VS components
Declare the following VS components as required for this solution to
build:

 - Microsoft.Component.MSBuild
 - Microsoft.VisualStudio.Workload.NativeDesktop
 - Microsoft.VisualStudio.Workload.ManagedDesktop
 - Microsoft.VisualStudio.Workload.NetCoreTools
 - Microsoft.Net.Core.Component.SDK.2.1
 - Microsoft.VisualStudio.Component.VC.v141.x86.x64
 - Microsoft.Net.Component.4.6.1.TargetingPack
 - Microsoft.Net.Component.4.6.1.SDK

Note that the Windows 10 SDK 10240 is also required, but this component
is no longer shipped with VS2019.
2019-05-10 15:22:43 +01:00