Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit 59218f4

Browse files
committed
Add missed launch settings, fix NuGet.configs, remove unused packages
1 parent 0243354 commit 59218f4

File tree

9 files changed

+82
-18
lines changed

9 files changed

+82
-18
lines changed

TestAssets/TestProjects/MSBuildTestAppWithCorruptedLaunchSettings/MSBuildTestAppWithCorruptedLaunchSettings.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,4 @@
66
<TargetFramework>netcoreapp2.0</TargetFramework>
77
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
88
</PropertyGroup>
9-
10-
<ItemGroup>
11-
<DotNetCliToolReference Include="dotnet-portable" Version="1.0.0" />
12-
<DotNetCliToolReference Include="dotnet-prefercliruntime" Version="1.0.0" />
13-
</ItemGroup>
149
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="test-packages" value="D:\Projects\cli\artifacts\testpackages" />
4+
<add key="test-packages" value="../../../artifacts/testpackages" />
55
</packageSources>
66
</configuration>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:49850/",
7+
"sslPort": 0
8+
}
9+
},
10+
"profiles": {
11+
"IIS Express": {
12+
"commandName": "IISExpress",
13+
"launchBrowser": true,
14+
"environmentVariables": {
15+
"ASPNETCORE_ENVIRONMENT": "Development"
16+
}
17+
},
18+
"First": {
19+
"commandName": "Project",
20+
"environmentVariables": [ ]
21+
},
22+
"Second": {
23+
"commandName": "Project",
24+
"environmentVariables": {
25+
"Message": "Second"
26+
}
27+
}
28+
}
29+
}

TestAssets/TestProjects/MSBuildTestAppWithLaunchSettings/MSBuildTestAppWithLaunchSettings.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,4 @@
66
<TargetFramework>netcoreapp2.0</TargetFramework>
77
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
88
</PropertyGroup>
9-
10-
<ItemGroup>
11-
<DotNetCliToolReference Include="dotnet-portable" Version="1.0.0" />
12-
<DotNetCliToolReference Include="dotnet-prefercliruntime" Version="1.0.0" />
13-
</ItemGroup>
149
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="test-packages" value="D:\Projects\cli\artifacts\testpackages" />
4+
<add key="test-packages" value="../../../artifacts/testpackages" />
55
</packageSources>
66
</configuration>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:49850/",
7+
"sslPort": 0
8+
}
9+
},
10+
"profiles": {
11+
"IIS Express": {
12+
"commandName": "IISExpress",
13+
"launchBrowser": true,
14+
"environmentVariables": {
15+
"ASPNETCORE_ENVIRONMENT": "Development"
16+
}
17+
},
18+
"First": {
19+
"commandName": "Project",
20+
"environmentVariables": {
21+
"Message": "First"
22+
}
23+
},
24+
"Second": {
25+
"commandName": "Project",
26+
"environmentVariables": {
27+
"Message": "Second"
28+
}
29+
}
30+
}
31+
}

TestAssets/TestProjects/MSBuildTestAppWithLaunchSettingsWithoutDefault/MSBuildTestAppWithLaunchSettingsWithoutDefault.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,4 @@
66
<TargetFramework>netcoreapp2.0</TargetFramework>
77
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
88
</PropertyGroup>
9-
10-
<ItemGroup>
11-
<DotNetCliToolReference Include="dotnet-portable" Version="1.0.0" />
12-
<DotNetCliToolReference Include="dotnet-prefercliruntime" Version="1.0.0" />
13-
</ItemGroup>
149
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="test-packages" value="D:\Projects\cli\artifacts\testpackages" />
4+
<add key="test-packages" value="../../../artifacts/testpackages" />
55
</packageSources>
66
</configuration>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:49850/",
7+
"sslPort": 0
8+
}
9+
},
10+
"profiles": {
11+
"IIS Express": {
12+
"commandName": "IISExpress",
13+
"launchBrowser": true,
14+
"environmentVariables": {
15+
"ASPNETCORE_ENVIRONMENT": "Development"
16+
}
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)