Skip to content

Commit baa76c7

Browse files
committed
fix the AssemblyTitle infomation
1 parent a8a28f7 commit baa76c7

File tree

7 files changed

+25
-24
lines changed

7 files changed

+25
-24
lines changed

.vs/cn.jpush.api/v14/.suo

9 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
对应的 REST API 文档:<http://docs.jpush.io/server/rest_api_v3_push/>
77

88
## 支持版本
9-
Microsoft. NET Framework 4.0 以上版本
9+
Microsoft. NET Framework 4.0 (包括)以上版本
1010

1111
## 环境配置
1212
[jpush-api-csharp-client](https://github.com/jpush/jpush-api-csharp-client) 项目根目录可以下载下面的两个文件。

cn.jpush.api.example/App.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
55
</startup>
6-
</configuration>
6+
</configuration>

cn.jpush.api.example/cn.jpush.api.example.csproj

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>cn.jpush.api.example</RootNamespace>
1111
<AssemblyName>cn.jpush.api.example</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<IsWebBootstrapper>false</IsWebBootstrapper>
1515
<PublishUrl>publish\</PublishUrl>
@@ -26,6 +26,7 @@
2626
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
2727
<UseApplicationTrust>false</UseApplicationTrust>
2828
<BootstrapperEnabled>true</BootstrapperEnabled>
29+
<TargetFrameworkProfile />
2930
</PropertyGroup>
3031
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3132
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -47,9 +48,13 @@
4748
<WarningLevel>4</WarningLevel>
4849
</PropertyGroup>
4950
<PropertyGroup>
50-
<StartupObject>cn.jpush.api.example.Schedule.DeleteSchedule</StartupObject>
51+
<StartupObject>cn.jpush.api.example.DeviceApiExample</StartupObject>
5152
</PropertyGroup>
5253
<ItemGroup>
54+
<Reference Include="cn.jpush.api, Version=1.0.0.18909, Culture=neutral, processorArchitecture=MSIL">
55+
<SpecificVersion>False</SpecificVersion>
56+
<HintPath>..\cn.jpush.api\bin\Debug\cn.jpush.api.dll</HintPath>
57+
</Reference>
5358
<Reference Include="System" />
5459
<Reference Include="System.Core" />
5560
<Reference Include="System.Xml.Linq" />
@@ -78,12 +83,6 @@
7883
<ItemGroup>
7984
<None Include="App.config" />
8085
</ItemGroup>
81-
<ItemGroup>
82-
<ProjectReference Include="..\cn.jpush.api\cn.jpush.api.csproj">
83-
<Project>{e281d457-f259-4f0b-8608-16c81d8ae97b}</Project>
84-
<Name>cn.jpush.api</Name>
85-
</ProjectReference>
86-
</ItemGroup>
8786
<ItemGroup>
8887
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
8988
<Visible>False</Visible>

cn.jpush.api.test/cn.jpush.api.test.csproj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
1717
<IsCodedUITest>False</IsCodedUITest>
1818
<TestProjectType>UnitTest</TestProjectType>
19+
<TargetFrameworkProfile />
1920
</PropertyGroup>
2021
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2122
<DebugSymbols>true</DebugSymbols>
@@ -25,6 +26,7 @@
2526
<DefineConstants>DEBUG;TRACE</DefineConstants>
2627
<ErrorReport>prompt</ErrorReport>
2728
<WarningLevel>4</WarningLevel>
29+
<Prefer32Bit>false</Prefer32Bit>
2830
</PropertyGroup>
2931
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3032
<DebugType>pdbonly</DebugType>
@@ -33,8 +35,13 @@
3335
<DefineConstants>TRACE</DefineConstants>
3436
<ErrorReport>prompt</ErrorReport>
3537
<WarningLevel>4</WarningLevel>
38+
<Prefer32Bit>false</Prefer32Bit>
3639
</PropertyGroup>
3740
<ItemGroup>
41+
<Reference Include="cn.jpush.api, Version=1.0.0.30572, Culture=neutral, processorArchitecture=MSIL">
42+
<SpecificVersion>False</SpecificVersion>
43+
<HintPath>..\cn.jpush.api\bin\Debug\cn.jpush.api.dll</HintPath>
44+
</Reference>
3845
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3946
<SpecificVersion>False</SpecificVersion>
4047
<HintPath>..\Newtonsoft.Json.dll</HintPath>
@@ -86,12 +93,6 @@
8693
<Compile Include="schedule\trigger\SingleTests.cs" />
8794
<Compile Include="schedule\trigger\TriggerPayloadTests.cs" />
8895
</ItemGroup>
89-
<ItemGroup>
90-
<ProjectReference Include="..\cn.jpush.api\cn.jpush.api.csproj">
91-
<Project>{e281d457-f259-4f0b-8608-16c81d8ae97b}</Project>
92-
<Name>cn.jpush.api</Name>
93-
</ProjectReference>
94-
</ItemGroup>
9596
<Choose>
9697
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
9798
<ItemGroup>

cn.jpush.api/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// 有关程序集的常规信息通过以下
66
// 特性集控制。更改这些特性值可修改
77
// 与程序集关联的信息。
8-
[assembly: AssemblyTitle("JPushApi")]
9-
[assembly: AssemblyDescription("")]
8+
[assembly: AssemblyTitle("jpush-api-csharp-client")]
9+
[assembly: AssemblyDescription("JPush's officially supported C# client library for accessing JPush APIs.")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("cn.jpush")]
1212
[assembly: AssemblyProduct("cn.jpush.api")]
13-
[assembly: AssemblyCopyright("Copyright © 2014")]
13+
[assembly: AssemblyCopyright("Copyright © 2016")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
3333
// 方法是按如下所示使用“*”:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.*")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.1.1.*")]
36+
[assembly: AssemblyFileVersion("1.1.1.0")]

cn.jpush.api/cn.jpush.api.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>cn.jpush.api</RootNamespace>
1111
<AssemblyName>cn.jpush.api</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<ProductVersion>12.0.0</ProductVersion>
1515
<SchemaVersion>2.0</SchemaVersion>
16+
<TargetFrameworkProfile />
1617
</PropertyGroup>
1718
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1819
<DebugSymbols>True</DebugSymbols>

0 commit comments

Comments
 (0)