Skip to content

Commit

Permalink
Change nupkg settings for ver 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre3 committed Nov 8, 2017
1 parent 87ff068 commit 9ab3b3a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
3 changes: 3 additions & 0 deletions FunctionAppSample/FunctionAppSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1705;NU1608</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.6" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
Expand Down
16 changes: 9 additions & 7 deletions Line.Messaging/Line.Messaging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Company></Company>
<Product>Line Messaging API</Product>
<Description>Line Messaging API for .Net</Description>
<Version>0.7.0-beta</Version>
<Version>1.0.0</Version>
<Copyright>© 2017 pierre3</Copyright>
<PackageLicenseUrl>https://github.com/pierre3/LineMessagingApi/blob/master/LICENSE</PackageLicenseUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand All @@ -15,12 +15,14 @@
<IncludeSymbols>true</IncludeSymbols>
<RepositoryUrl>https://github.com/pierre3/LineMessagingApi/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>- Supports the rich menu api
- Add OAuth methods
- LineMessagingClient.IssueChannelAccessTokenAsync()
- LineMessagingClient.RevokeChannelAccessTokenAsync()</PackageReleaseNotes>
<AssemblyVersion>0.7.0.0</AssemblyVersion>
<FileVersion>0.7.0.0</FileVersion>
<PackageReleaseNotes>Add Documentation Comments</PackageReleaseNotes>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard1.3\Line.Messaging.xml</DocumentationFile>
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Line.Messaging/LineMessagingClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ public async Task<GroupMemberIds> GetRoomMemberIdsAsync(string roomId, string co
/// Use the room ID returned in the source object of webhook event objects.
/// This feature is only available for LINE@ Approved accounts or official accounts.
/// </summary>
/// <param name="roomId">Identifier of the room<</param>
/// <param name="roomId">Identifier of the room</param>
/// <returns>List of UserProfiles</returns>
public async Task<IList<UserProfile>> GetRoomMemberProfilesAsync(string roomId)
{
Expand Down

0 comments on commit 9ab3b3a

Please sign in to comment.