Skip to content

Commit

Permalink
Fixes for stable 3.0.0 release (#6)
Browse files Browse the repository at this point in the history
Include pdb files (Fixes #4)
Reference OpenRiaServices 4.6.0 (stable)
Update yml to build tags
  • Loading branch information
Daniel-Svensson authored Jun 13, 2019
1 parent 8776ddb commit 515fb9d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)OpenRiaServices.FluentMetadata.snk</AssemblyOriginatorKeyFile>

<!-- Common Assembly and Package Info-->
<!-- Include symbol files (*.pdb) in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Version>3.0.0</Version>
<Authors>Merijn de Jonge, OpenRiaServices, Nikhil Kothari</Authors>
<Company>Merijn de Jonge</Company>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="OpenRiaServices.Server">
<Version>4.6.0-preview0001</Version>
<Version>4.6.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<None Include="Generated_Code\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.1" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="OpenRiaServices.Client.Core" Version="4.6.0-preview0001" />
<PackageReference Include="OpenRiaServices.Client.CodeGen" Version="4.6.0-preview0001">
<PackageReference Include="OpenRiaServices.Client.Core" Version="4.6.0" />
<PackageReference Include="OpenRiaServices.Client.CodeGen" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net45</TargetFrameworks>
<Description>library that provides a fluent configuration interface for configuring domain services.</Description>
<PackageId>OpenRiaServices.FluentMetadata</PackageId>
<GeneratePackageOnBuild Condition="'$(BUILD_BUILDID)' != ''" >true</GeneratePackageOnBuild>
<GeneratePackageOnBuild Condition="'$(BUILD_BUILDID)' != ''">true</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
Expand All @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OpenRiaServices.Server" Version="4.6.0-preview0001" />
<PackageReference Include="OpenRiaServices.Server" Version="4.6.0" />
</ItemGroup>

</Project>
8 changes: 6 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net

trigger:
- master

branches:
include:
- master
tags:
include:
- v*
pool:
vmImage: 'windows-2019'

Expand Down

0 comments on commit 515fb9d

Please sign in to comment.