Skip to content

Commit 989c209

Browse files
committed
Update to latest SourceBrowser
1 parent 2cea2c3 commit 989c209

File tree

17 files changed

+46
-425
lines changed

17 files changed

+46
-425
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "3.1.201",
3+
"version": "6.0.302",
44
"rollForward": "major"
55
}
66
}

src/SourceBrowser.hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
05299ba388638aa962701f050b11d57ef70e71da
1+
2b57a3d551d02c05b90d006f48cfa07c0a7e5cd2

src/SourceBrowser/TestCode/Project2/Class1.cs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public enum Nested2
8383

8484
public class NestedGeneric<T>
8585
{
86-
public T GetT(U u) { }
86+
public T GetT(U u) { throw null; }
8787
}
8888

8989
void I1.Foo()
@@ -145,7 +145,12 @@ public override void M()
145145
var b = new B();
146146
}
147147

148-
protected override string Name
148+
public object Clone()
149+
{
150+
throw new NotImplementedException();
151+
}
152+
153+
public override string Name
149154
{
150155
get
151156
{
Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,10 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
42
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{C714BCF5-8EEA-4AC8-A030-8D7B1F57E122}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>Project2</RootNamespace>
11-
<AssemblyName>Project2</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
3+
<TargetFramework>net472</TargetFramework>
134
<LangVersion>latest</LangVersion>
145
</PropertyGroup>
15-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16-
<DebugSymbols>true</DebugSymbols>
17-
<DebugType>full</DebugType>
18-
<Optimize>false</Optimize>
19-
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>TRACE;DEBUG;TESTDEFINE</DefineConstants>
21-
<ErrorReport>prompt</ErrorReport>
22-
<WarningLevel>4</WarningLevel>
23-
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25-
<DebugType>pdbonly</DebugType>
26-
<Optimize>true</Optimize>
27-
<OutputPath>bin\Release\</OutputPath>
28-
<DefineConstants>TRACE</DefineConstants>
29-
<ErrorReport>prompt</ErrorReport>
30-
<WarningLevel>4</WarningLevel>
31-
</PropertyGroup>
326
<ItemGroup>
337
<Reference Include="FSharp.Core" />
348
<Reference Include="Microsoft.CSharp" />
35-
<Reference Include="System" />
36-
<Reference Include="System.Core" />
37-
<Reference Include="System.Data" />
38-
<Reference Include="System.Data.DataSetExtensions" />
39-
<Reference Include="System.Xml" />
40-
<Reference Include="System.Xml.Linq" />
41-
</ItemGroup>
42-
<ItemGroup>
43-
<Compile Include="-._~!%24%27%28%29+,=%40.cs" />
44-
<Compile Include="Class1.cs" />
45-
<Compile Include="Class1.Partial.cs" />
469
</ItemGroup>
47-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
4810
</Project>
Lines changed: 2 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
42
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{0F5BA342-6E00-4772-A967-171772206169}</ProjectGuid>
3+
<TargetFramework>netstandard2.0</TargetFramework>
84
<OutputType>Exe</OutputType>
9-
<AssemblyName>TestSolution</AssemblyName>
10-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
115
</PropertyGroup>
12-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
13-
<DebugSymbols>true</DebugSymbols>
14-
<DebugType>full</DebugType>
15-
<Optimize>false</Optimize>
16-
<OutputPath>bin\Debug\</OutputPath>
17-
<DefineConstants>DEBUG;TRACE</DefineConstants>
18-
</PropertyGroup>
19-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
20-
<DebugType>pdbonly</DebugType>
21-
<Optimize>true</Optimize>
22-
<OutputPath>bin\Release\</OutputPath>
23-
<DefineConstants>TRACE</DefineConstants>
24-
</PropertyGroup>
25-
<ItemGroup>
26-
<Reference Include="Microsoft.CSharp" />
27-
<Reference Include="System" />
28-
<Reference Include="System.ComponentModel.Composition" />
29-
<Reference Include="System.Core" />
30-
<Reference Include="System.Xml" />
31-
<Reference Include="System.Xml.Linq" />
32-
</ItemGroup>
33-
<ItemGroup>
34-
<Compile Include="Folder\Test.cs" />
35-
<Compile Include="Program.cs" />
36-
</ItemGroup>
376
<ItemGroup>
38-
<ProjectReference Include="..\Project2\Project2.csproj">
39-
<Project>{c714bcf5-8eea-4ac8-a030-8d7b1f57e122}</Project>
40-
<Name>Project2</Name>
41-
</ProjectReference>
42-
<ProjectReference Include="..\Project2\Project2.csproj">
43-
<Project>{c714bcf5-8eea-4ac8-a030-8d7b1f57e122}</Project>
44-
<Name>Project2</Name>
45-
</ProjectReference>
467
</ItemGroup>
47-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
488
</Project>
Lines changed: 4 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,9 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props')" />
4-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
52
<PropertyGroup>
6-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8-
<ProjectGuid>{14BA174B-38F6-4342-BBDC-56EE3E8F3B79}</ProjectGuid>
9-
<OutputType>Library</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>TestSolution_UnitTest_Tests</RootNamespace>
12-
<AssemblyName>TestSolution_UnitTest_Tests</AssemblyName>
13-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
3+
<TargetFramework>net472</TargetFramework>
154
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16-
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">15.0</VisualStudioVersion>
17-
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
18-
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
19-
<IsCodedUITest>False</IsCodedUITest>
20-
<TestProjectType>UnitTest</TestProjectType>
21-
<NuGetPackageImportStamp>
22-
</NuGetPackageImportStamp>
235
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
25-
<DebugSymbols>true</DebugSymbols>
26-
<DebugType>full</DebugType>
27-
<Optimize>false</Optimize>
28-
<OutputPath>bin\Debug\</OutputPath>
29-
<DefineConstants>DEBUG;TRACE</DefineConstants>
30-
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
32-
</PropertyGroup>
33-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34-
<DebugType>pdbonly</DebugType>
35-
<Optimize>true</Optimize>
36-
<OutputPath>bin\Release\</OutputPath>
37-
<DefineConstants>TRACE</DefineConstants>
38-
<ErrorReport>prompt</ErrorReport>
39-
<WarningLevel>4</WarningLevel>
40-
</PropertyGroup>
41-
<ItemGroup>
42-
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
43-
<HintPath>..\packages\MSTest.TestFramework.2.1.1\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
44-
</Reference>
45-
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
46-
<HintPath>..\packages\MSTest.TestFramework.2.1.1\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
47-
</Reference>
48-
<Reference Include="System" />
49-
<Reference Include="System.Core" />
50-
</ItemGroup>
51-
<ItemGroup>
52-
<Compile Include="UnitTest1.cs" />
53-
<Compile Include="Properties\AssemblyInfo.cs" />
54-
</ItemGroup>
55-
<ItemGroup>
56-
<None Include="packages.config" />
57-
</ItemGroup>
586
<ItemGroup>
59-
<ProjectReference Include="..\TestSolution\TestSolution.csproj">
60-
<Project>{0f5ba342-6e00-4772-a967-171772206169}</Project>
61-
<Name>TestSolution</Name>
62-
</ProjectReference>
7+
<ProjectReference Include="..\TestSolution\TestSolution.csproj"/>
638
</ItemGroup>
64-
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
65-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
66-
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
67-
<PropertyGroup>
68-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
69-
</PropertyGroup>
70-
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props'))" />
71-
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets'))" />
72-
</Target>
73-
<Import Project="..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets')" />
74-
</Project>
9+
</Project>
Lines changed: 2 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,11 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
42
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{0842EE0E-D38E-46DA-B14F-7BDC68EEC424}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>TypeScript</RootNamespace>
11-
<AssemblyName>TypeScript</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
3+
<TargetFramework>net472</TargetFramework>
144
</PropertyGroup>
15-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16-
<DebugSymbols>true</DebugSymbols>
17-
<DebugType>full</DebugType>
18-
<Optimize>false</Optimize>
19-
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>DEBUG;TRACE</DefineConstants>
21-
<ErrorReport>prompt</ErrorReport>
22-
<WarningLevel>4</WarningLevel>
23-
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25-
<DebugType>pdbonly</DebugType>
26-
<Optimize>true</Optimize>
27-
<OutputPath>bin\Release\</OutputPath>
28-
<DefineConstants>TRACE</DefineConstants>
29-
<ErrorReport>prompt</ErrorReport>
30-
<WarningLevel>4</WarningLevel>
31-
</PropertyGroup>
32-
<ItemGroup>
33-
<Reference Include="Microsoft.CSharp" />
34-
<Reference Include="System" />
35-
<Reference Include="System.Core" />
36-
<Reference Include="System.Data" />
37-
<Reference Include="System.Data.DataSetExtensions" />
38-
<Reference Include="System.Net.Http" />
39-
<Reference Include="System.Xml" />
40-
<Reference Include="System.Xml.Linq" />
41-
</ItemGroup>
425
<ItemGroup>
436
<TypeScriptCompile Include="analyzer.ts" />
447
<TypeScriptCompile Include="analyzerEnv.ts" />
458
<TypeScriptCompile Include="shims.ts" />
469
<TypeScriptCompile Include="utilities.ts" />
4710
</ItemGroup>
48-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
49-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
50-
Other similar extension points exist, see Microsoft.Common.targets.
51-
<Target Name="BeforeBuild">
52-
</Target>
53-
<Target Name="AfterBuild">
54-
</Target>
55-
-->
5611
</Project>
Lines changed: 2 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,11 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
42
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{D6D0FE59-C578-4C50-B4DC-CDDC56557FB2}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<RootNamespace>VBLibrary</RootNamespace>
10-
<AssemblyName>VBLibrary</AssemblyName>
11-
<FileAlignment>512</FileAlignment>
12-
<MyType>Windows</MyType>
13-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14-
</PropertyGroup>
15-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16-
<DebugSymbols>true</DebugSymbols>
17-
<DebugType>full</DebugType>
18-
<DefineDebug>true</DefineDebug>
19-
<DefineTrace>true</DefineTrace>
20-
<OutputPath>bin\Debug\</OutputPath>
21-
<DocumentationFile>VBLibrary.xml</DocumentationFile>
22-
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
23-
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25-
<DebugType>pdbonly</DebugType>
26-
<DefineDebug>false</DefineDebug>
27-
<DefineTrace>true</DefineTrace>
28-
<Optimize>true</Optimize>
29-
<OutputPath>bin\Release\</OutputPath>
30-
<DocumentationFile>VBLibrary.xml</DocumentationFile>
31-
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
3+
<TargetFramework>net472</TargetFramework>
324
</PropertyGroup>
335
<PropertyGroup>
346
<OptionExplicit>On</OptionExplicit>
357
<OptionCompare>Binary</OptionCompare>
368
<OptionStrict>Off</OptionStrict>
379
<OptionInfer>On</OptionInfer>
3810
</PropertyGroup>
39-
<ItemGroup>
40-
<Reference Include="System" />
41-
<Reference Include="System.Core" />
42-
<Reference Include="System.Xml" />
43-
<Reference Include="System.Xml.Linq" />
44-
</ItemGroup>
45-
<ItemGroup>
46-
<Import Include="Microsoft.VisualBasic" />
47-
<Import Include="System" />
48-
<Import Include="System.Collections" />
49-
<Import Include="System.Collections.Generic" />
50-
<Import Include="System.Data" />
51-
<Import Include="System.Diagnostics" />
52-
<Import Include="System.Linq" />
53-
<Import Include="System.Threading.Tasks" />
54-
<Import Include="System.Xml.Linq" />
55-
</ItemGroup>
56-
<ItemGroup>
57-
<Compile Include="Class1.vb" />
58-
</ItemGroup>
59-
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
6011
</Project>
Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
42
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{DAFAB23C-9B6A-405C-90F9-2E23F29C3DE0}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AssemblyName>WildcardIncludes</AssemblyName>
10-
<RootNamespace>WildcardIncludes</RootNamespace>
11-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
3+
<TargetFramework>net472</TargetFramework>
124
<OutputPath>bin\$(Configuration)</OutputPath>
135
</PropertyGroup>
14-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15-
<PlatformTarget>AnyCPU</PlatformTarget>
16-
<DebugSymbols>true</DebugSymbols>
17-
<DebugType>full</DebugType>
18-
<Optimize>false</Optimize>
19-
<DefineConstants>DEBUG;TRACE</DefineConstants>
20-
<ErrorReport>prompt</ErrorReport>
21-
<WarningLevel>4</WarningLevel>
22-
</PropertyGroup>
23-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
24-
<PlatformTarget>AnyCPU</PlatformTarget>
25-
<DebugType>pdbonly</DebugType>
26-
<Optimize>true</Optimize>
27-
<DefineConstants>TRACE</DefineConstants>
28-
<ErrorReport>prompt</ErrorReport>
29-
<WarningLevel>4</WarningLevel>
30-
</PropertyGroup>
31-
<ItemGroup>
32-
<Reference Include="Microsoft.CSharp" />
33-
<Reference Include="System" />
34-
<Reference Include="System.Core" />
35-
<Reference Include="System.Xml" />
36-
<Reference Include="System.Xml.Linq" />
37-
</ItemGroup>
386
<ItemGroup>
39-
<Compile Include="Program.cs" />
407
<Compile Include="..\ExternalFiles\*.cs">
418
<Link>Subfolder</Link>
429
</Compile>
4310
</ItemGroup>
44-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
4511
</Project>

0 commit comments

Comments
 (0)