-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCodeFactory.VisualStudio.Packager.csproj
More file actions
103 lines (103 loc) · 4.89 KB
/
CodeFactory.VisualStudio.Packager.csproj
File metadata and controls
103 lines (103 loc) · 4.89 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
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<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>{F50BD7A8-B639-4BD5-BDE5-1948F3105CDE}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>CodeFactory.VisualStudio.Packager</RootNamespace>
<AssemblyName>CodeFactory.VisualStudio.Packager</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>CodeFactorySigner.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Extensions.CommandLineUtils, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Extensions.CommandLineUtils.1.1.1\lib\net451\Microsoft.Extensions.CommandLineUtils.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Collections.Immutable.1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<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" />
</ItemGroup>
<ItemGroup>
<Compile Include="AttributeManager.cs" />
<Compile Include="LibraryManagement.cs" />
<Compile Include="PackagerData.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="CodeFactorySDK.nuspec" />
<None Include="CodeFactorySigner.snk" />
<None Include="packages.config" />
<None Include="CodeFactorySDK.targets">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="VisualStudioPackager.targets">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CodeFactory.DotNet\CodeFactory.DotNet.csproj">
<Project>{661e6004-c585-45ab-8c40-5a1b826f6490}</Project>
<Name>CodeFactory.DotNet</Name>
</ProjectReference>
<ProjectReference Include="..\CodeFactory.Formatting.CSharp\CodeFactory.Formatting.CSharp.csproj">
<Project>{0a5d05fb-013d-4685-a3a8-be29f24bcb82}</Project>
<Name>CodeFactory.Formatting.CSharp</Name>
</ProjectReference>
<ProjectReference Include="..\CodeFactory.Logging\CodeFactory.Logging.csproj">
<Project>{c0cbdd09-b55d-4572-9f4d-d0e6dd8c4a73}</Project>
<Name>CodeFactory.Logging</Name>
</ProjectReference>
<ProjectReference Include="..\CodeFactory.VisualStudio.Loader\CodeFactory.VisualStudio.Loader.csproj">
<Project>{fa25f22d-d148-44b5-90ef-c5daec7f55a0}</Project>
<Name>CodeFactory.VisualStudio.Loader</Name>
</ProjectReference>
<ProjectReference Include="..\CodeFactory.VisualStudio\CodeFactory.VisualStudio.csproj">
<Project>{b0e14e33-e53e-4f45-81cb-363a92b26b3b}</Project>
<Name>CodeFactory.VisualStudio</Name>
</ProjectReference>
<ProjectReference Include="..\CodeFactory\CodeFactory.csproj">
<Project>{d73c2a8f-64a2-4713-9a23-03c10b888877}</Project>
<Name>CodeFactory</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>