-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Target OpenRiaServices instead of WCF Ria Services and update project…
… file (#1) * Target open ria services instead of WCF Ria services * update web part of "test" project * Fix path to solution * add client "test" project * enable packing and tests * disable packing for now * fix server project for tests * Fix tests * update nuget version of test sdk * Update azure-pipelines.yml for Azure Pipelines add code coverage * disable documentation generation * use same namespace ass in current nguet releae * properly handle generated_code folder for client project * Delete fix_author.sh
- Loading branch information
1 parent
dc277da
commit 8801951
Showing
37 changed files
with
226 additions
and
590 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<Project> | ||
|
||
<!-- This PropertyGroup defines the location and version of Silverlight and SDK for .Net projects (Metadata projects) --> | ||
<PropertyGroup> | ||
<IsTestProject Condition="'$(IsTestProject)' == '' And ($(MSBuildProjectFile.Contains('.Test')) Or $(MSBuildProjectDirectory.Contains('Tests\')))">true</IsTestProject> | ||
<IsFrameworkProject Condition="'$(IsTestProject)' != 'true' and !$(MSBuildProjectFile.Contains('.Test')) ">true</IsFrameworkProject> | ||
|
||
<DeterministicSourcePaths Condition="'$(BUILD_BUILDID)' != '' and '$(IsFrameworkProject)' == 'true'">true</DeterministicSourcePaths> | ||
|
||
<!-- Use csharp 7.3 for all projects --> | ||
<LangVersion Condition="'$(MSBuildProjectExtension)' == '.csproj'">7.3</LangVersion> | ||
|
||
<SonarQubeTestProject Condition="'$(IsTestProject)' == 'true'">True</SonarQubeTestProject> | ||
<IsPackable Condition="'$(IsTestProject)' == 'true'">false</IsPackable> | ||
|
||
<!-- Project is missing documentation so not enabled --> | ||
<!--<GenerateDocumentationFile Condition="'$(IsFrameworkProject)' == 'true' and '$(Configuration)' != 'Debug'">true</GenerateDocumentationFile>--> | ||
<CopyLocalLockFileAssemblies Condition="'$(IsFrameworkProject)' == 'true'">false</CopyLocalLockFileAssemblies> | ||
|
||
<!-- Setup signing--> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)OpenRiaServices.FluentMetadata.snk</AssemblyOriginatorKeyFile> | ||
|
||
<!-- Common Assembly and Package Info--> | ||
<Version>3.0.0</Version> | ||
<Authors>Merijn de Jonge, OpenRiaServices, Nikhil Kothari</Authors> | ||
<Company>Merijn de Jonge</Company> | ||
<Product>OpenRiaServices.FluentMetadata</Product> | ||
<Copyright>Copyright © OpenRiaServices 2019</Copyright> | ||
<PackageProjectUrl>https://github.com/OpenRIAServices/OpenRiaServices.FluentMetadata/</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/OpenRIAServices/OpenRiaServices.FluentMetadata.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageReleaseNotes>This version supports Open Ria Services 4.6.0+.</PackageReleaseNotes> | ||
<PackageTags>OpenRiaServices;Fluent;FluentMetadata</PackageTags> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
</PropertyGroup> | ||
|
||
<!-- Enable source link, we really only want this for framework assemblies and CI builds | ||
--> | ||
<ItemGroup Condition="'$(IsFrameworkProject)' == 'true'"> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All"/> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 0 additions & 74 deletions
74
FluentMetadata.Tests/FluentMetadata.Tests.Web/FluentMetadata.TestsTestPage.aspx
This file was deleted.
Oops, something went wrong.
73 changes: 0 additions & 73 deletions
73
FluentMetadata.Tests/FluentMetadata.Tests.Web/FluentMetadata.TestsTestPage.html
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
FluentMetadata.Tests/FluentMetadata.Tests.Web/FluentMetadataConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.