Skip to content

Commit

Permalink
update csproj file to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiningRush committed Dec 25, 2017
1 parent 3e613ad commit e36009c
Show file tree
Hide file tree
Showing 12 changed files with 139 additions and 285 deletions.
52 changes: 26 additions & 26 deletions src/ServiceAnt.IocInstaller.Autofac/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,32 @@
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("ServiceAnt.IocInstaller.Autofac")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("ServiceAnt.IocInstaller.Autofac")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
//[assembly: AssemblyTitle("ServiceAnt.IocInstaller.Autofac")]
//[assembly: AssemblyDescription("")]
//[assembly: AssemblyConfiguration("")]
//[assembly: AssemblyCompany("Microsoft")]
//[assembly: AssemblyProduct("ServiceAnt.IocInstaller.Autofac")]
//[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
//[assembly: AssemblyTrademark("")]
//[assembly: AssemblyCulture("")]

// 将 ComVisible 设置为 false 会使此程序集中的类型
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
//请将此类型的 ComVisible 特性设置为 true。
[assembly: ComVisible(false)]
//// 将 ComVisible 设置为 false 会使此程序集中的类型
////对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
////请将此类型的 ComVisible 特性设置为 true。
//[assembly: ComVisible(false)]

// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
[assembly: Guid("1fa5221c-9a54-4132-b7cf-cf7cc7a30e59")]
//// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
//[assembly: Guid("1fa5221c-9a54-4132-b7cf-cf7cc7a30e59")]

// 程序集的版本信息由下列四个值组成:
//
// 主版本
// 次版本
// 生成号
// 修订号
//
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//// 程序集的版本信息由下列四个值组成:
////
//// 主版本
//// 次版本
//// 生成号
//// 修订号
////
//// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
////通过使用 "*",如下所示:
//// [assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
@@ -1,64 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http:https://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1FA5221C-9A54-4132-B7CF-CF7CC7A30E59}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ServiceAnt.IocInstaller.Autofac</RootNamespace>
<AssemblyName>ServiceAnt.IocInstaller.Autofac</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Description>The DI installer of ServiceAnt for Autofac</Description>
<PackageTags>$(PackageTags);OWIN</PackageTags>
<TargetFramework>net452</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Autofac, Version=4.6.2.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<HintPath>..\..\packages\Autofac.4.6.2\lib\net45\Autofac.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Compression.FileSystem" />
<Reference Include="System.Numerics" />
<Reference Include="System.Runtime.Serialization" />
<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="IocResolver.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ServiceAntModule.cs" />
</ItemGroup>

<ItemGroup>
<None Include="packages.config" />
<PackageReference Include="Autofac" Version="4.6.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\ServiceAnt\ServiceAnt.csproj">
<Project>{fb6688e2-094a-4d25-9eea-85c3b7ccc4a2}</Project>
<Name>ServiceAnt</Name>
</ProjectReference>
<ProjectReference Include="..\ServiceAnt\ServiceAnt.csproj" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
</Project>
4 changes: 0 additions & 4 deletions src/ServiceAnt.IocInstaller.Autofac/packages.config

This file was deleted.

64 changes: 32 additions & 32 deletions src/ServiceAnt.IocInstaller.Castle/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
//using System.Reflection;
//using System.Runtime.CompilerServices;
//using System.Runtime.InteropServices;

// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("ServiceAnt.IocInstaller.Castle")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("ServiceAnt.IocInstaller.Castle")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
//// 有关程序集的一般信息由以下
//// 控制。更改这些特性值可修改
//// 与程序集关联的信息。
//[assembly: AssemblyTitle("ServiceAnt.IocInstaller.Castle")]
//[assembly: AssemblyDescription("")]
//[assembly: AssemblyConfiguration("")]
//[assembly: AssemblyCompany("Microsoft")]
//[assembly: AssemblyProduct("ServiceAnt.IocInstaller.Castle")]
//[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
//[assembly: AssemblyTrademark("")]
//[assembly: AssemblyCulture("")]

// 将 ComVisible 设置为 false 会使此程序集中的类型
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
//请将此类型的 ComVisible 特性设置为 true。
[assembly: ComVisible(false)]
//// 将 ComVisible 设置为 false 会使此程序集中的类型
////对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
////请将此类型的 ComVisible 特性设置为 true。
//[assembly: ComVisible(false)]

// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
[assembly: Guid("b64f120c-36db-4d4a-8d30-d113cf70bf1a")]
//// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
//[assembly: Guid("b64f120c-36db-4d4a-8d30-d113cf70bf1a")]

// 程序集的版本信息由下列四个值组成:
//
// 主版本
// 次版本
// 生成号
// 修订号
//
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//// 程序集的版本信息由下列四个值组成:
////
//// 主版本
//// 次版本
//// 生成号
//// 修订号
////
//// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
////通过使用 "*",如下所示:
//// [assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line number Diff line number Diff line change
@@ -1,66 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http:https://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B64F120C-36DB-4D4A-8D30-D113CF70BF1A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ServiceAnt.IocInstaller.Castle</RootNamespace>
<AssemblyName>ServiceAnt.IocInstaller.Castle</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Description>The DI installer of ServiceAnt for Castle</Description>
<PackageTags>$(PackageTags);OWIN</PackageTags>
<TargetFramework>net452</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Castle.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<HintPath>..\..\packages\Castle.Core.4.2.0\lib\net45\Castle.Core.dll</HintPath>
</Reference>
<Reference Include="Castle.Windsor, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<HintPath>..\..\packages\Castle.Windsor.4.1.0\lib\net45\Castle.Windsor.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Remoting" />
<Reference Include="System.Web" />
<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="IocResolver.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ServiceAntInstaller.cs" />
</ItemGroup>

<ItemGroup>
<None Include="packages.config" />
<PackageReference Include="Castle.Windsor" Version="4.1.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\ServiceAnt\ServiceAnt.csproj">
<Project>{fb6688e2-094a-4d25-9eea-85c3b7ccc4a2}</Project>
<Name>ServiceAnt</Name>
</ProjectReference>
<ProjectReference Include="..\ServiceAnt\ServiceAnt.csproj" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
5 changes: 0 additions & 5 deletions src/ServiceAnt.IocInstaller.Castle/packages.config

This file was deleted.

58 changes: 29 additions & 29 deletions src/ServiceAnt/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,35 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("ServiceAnt")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("ServiceAnt")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
//// 有关程序集的一般信息由以下
//// 控制。更改这些特性值可修改
//// 与程序集关联的信息。
//[assembly: AssemblyTitle("ServiceAnt")]
//[assembly: AssemblyDescription("")]
//[assembly: AssemblyConfiguration("")]
//[assembly: AssemblyCompany("Microsoft")]
//[assembly: AssemblyProduct("ServiceAnt")]
//[assembly: AssemblyCopyright("Copyright © Microsoft 2017")]
//[assembly: AssemblyTrademark("")]
//[assembly: AssemblyCulture("")]

// 将 ComVisible 设置为 false 会使此程序集中的类型
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
//请将此类型的 ComVisible 特性设置为 true。
[assembly: ComVisible(false)]
//// 将 ComVisible 设置为 false 会使此程序集中的类型
////对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
////请将此类型的 ComVisible 特性设置为 true。
//[assembly: ComVisible(false)]

// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
[assembly: Guid("fb6688e2-094a-4d25-9eea-85c3b7ccc4a2")]
//// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
//[assembly: Guid("fb6688e2-094a-4d25-9eea-85c3b7ccc4a2")]

// 程序集的版本信息由下列四个值组成:
//
// 主版本
// 次版本
// 生成号
// 修订号
//
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
//// 程序集的版本信息由下列四个值组成:
////
//// 主版本
//// 次版本
//// 生成号
//// 修订号
////
//// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
////通过使用 "*",如下所示:
//// [assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
Loading

0 comments on commit e36009c

Please sign in to comment.