-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathMigrateToJsps.csproj
More file actions
93 lines (93 loc) · 4.1 KB
/
MigrateToJsps.csproj
File metadata and controls
93 lines (93 loc) · 4.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Product\ProjectBefore.settings" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{FCAE2282-8ADC-46C8-B4C8-C25A76BD9567}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MigrateToJsps</RootNamespace>
<AssemblyName>MigrateToJsps</AssemblyName>
<RestorePackages>true</RestorePackages>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Design" />
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Compression.FileSystem" />
<Reference Include="System.Numerics" />
<Reference Include="System.Reflection" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Security" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xaml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />
<Reference Include="WindowsFormsIntegration" />
</ItemGroup>
<ItemGroup>
<Compile Include="Jsps\EsprojFileModel.cs" />
<Compile Include="Jsps\LaunchJson\Compound.cs" />
<Compile Include="Jsps\LaunchJson\Configuration.cs" />
<Compile Include="Jsps\LaunchJson\LaunchJson.cs" />
<Compile Include="Jsps\Logger.cs" />
<Compile Include="MigrationLibrary.cs" />
<Compile Include="Jsps\EsprojFileWriter.cs" />
<Compile Include="Jsps\JspsProjectCreator.cs" />
<Compile Include="Jsps\LaunchJsonWriter.cs" />
<Compile Include="Jsps\NugetConfigWriter.cs" />
<Compile Include="Ntvs\NjsprojFileModel.cs" />
<Compile Include="Ntvs\NjsprojFileReader.cs" />
<Compile Include="Ntvs\ProjectGuids.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<FilesToSign Include="$(OutDir)\$(AssemblyName).dll">
<Authenticode>Microsoft400</Authenticode>
<StrongName>StrongName</StrongName>
<InProject>false</InProject>
</FilesToSign>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Composition">
<Version>15.0.70</Version>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.ProjectSystem">
<Version>16.2.133-pre</Version>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Validation">
<Version>15.3.32</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.1</Version>
</PackageReference>
<PackageReference Include="System.Xml.XmlSerializer">
<Version>4.3.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\Product\Nodejs\SharedResources.proj" />
<Import Project="..\Product\ProjectAfter.targets" />
</Project>