Skip to content

Commit 69858e3

Browse files
authored
Merge pull request #9 from devdotnetorg/dev
Dev => Master
2 parents e11f90a + 8d422b4 commit 69858e3

File tree

184 files changed

+2362
-2962
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+2362
-2962
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions

CHANGELOG_ru.md

Lines changed: 17 additions & 0 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

assets/marketplace/vscode-marketplace-overview.md

Lines changed: 0 additions & 98 deletions
This file was deleted.

assets/source/logo/logo.pdn

-7.28 KB
Binary file not shown.

assets/source/logo/logo.png

-2.48 KB
Binary file not shown.
Binary file not shown.

bashscript/installpackagedotnetruntimes.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,28 @@ sudo ln -s $INSTALLPATH/dotnet /usr/bin/dotnet
4242

4343
rm dotnet-install.sh
4444

45+
#Disabled telemetry in .NET
46+
#Telemetry is collected when using any of the .NET CLI commands, such as:
47+
# dotnet build
48+
# dotnet pack
49+
# dotnet run
50+
51+
filename="/etc/environment"
52+
53+
#add
54+
if sudo grep -Fxq "DOTNET_CLI_TELEMETRY_OPTOUT=true" $filename
55+
then
56+
echo "String exists: DOTNET_CLI_TELEMETRY_OPTOUT=true"
57+
else
58+
echo "Adding a line: DOTNET_CLI_TELEMETRY_OPTOUT=true in $filename"
59+
#newline
60+
sudo sh -c "echo '\n' >> $filename"
61+
sudo sh -c "echo 'DOTNET_CLI_TELEMETRY_OPTOUT=true' >> $filename"
62+
fi
63+
64+
echo "Disabled telemetry in .NET CLI"
65+
echo "Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry"
66+
4567
dotnet --info
4668

4769
echo "Successfully"

bashscript/installpackagedotnetsdk.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,28 @@ sudo ln -s $INSTALLPATH/dotnet /usr/bin/dotnet
3737

3838
rm dotnet-install.sh
3939

40+
#Disabled telemetry in .NET
41+
#Telemetry is collected when using any of the .NET CLI commands, such as:
42+
# dotnet build
43+
# dotnet pack
44+
# dotnet run
45+
46+
filename="/etc/environment"
47+
48+
#add
49+
if sudo grep -Fxq "DOTNET_CLI_TELEMETRY_OPTOUT=true" $filename
50+
then
51+
echo "String exists: DOTNET_CLI_TELEMETRY_OPTOUT=true"
52+
else
53+
echo "Adding a line: DOTNET_CLI_TELEMETRY_OPTOUT=true in $filename"
54+
#newline
55+
sudo sh -c "echo '\n' >> $filename"
56+
sudo sh -c "echo 'DOTNET_CLI_TELEMETRY_OPTOUT=true' >> $filename"
57+
fi
58+
59+
echo "Disabled telemetry in .NET CLI"
60+
echo "Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry"
61+
4062
dotnet --info
4163

4264
echo "Successfully"

docs/Extension-settings.md

Lines changed: 12 additions & 8 deletions

0 commit comments

Comments
 (0)