Skip to content

Commit

Permalink
Fix error in Assembly and Task name. (#423)
Browse files Browse the repository at this point in the history

* Update changelog
  • Loading branch information
lindellhugo authored May 26, 2023
1 parent 72bcb72 commit 3158a17
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
This should make it possible to use portable and embedded pdb's on the server
*
* AspNetCore
* New extension method to add OpenRiaServices to services.
* New extension method to add OpenRiaServices to services from #413 by @ehsangfl.
```C#
services.AddOpenRiaServices<T>()
```
* New extension method to add OpenRiaServices to pipeline.
* New extension method to add OpenRiaServices to pipeline from #413 by @ehsangfl.
```C#
endpoints.MapOpenRiaServices(opt => opt.AddDomainService<T>())
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
<_OpenRiaDesignTimeBuild Condition="'$(DesignTimeBuild)' == 'true' OR '$(BuildingProject)' != 'true'">true</_OpenRiaDesignTimeBuild>
</PropertyGroup>

<UsingTask TaskName="$(MSBuildThisFileDirectory)../tasks/$(_OpenRiaTaskFramework)/OpenRiaServices.Tools.CreateOpenRiaClientFilesTask"
AssemblyFile="OpenRiaServices.Tools.dll" />
<UsingTask TaskName="OpenRiaServices.Tools.CreateOpenRiaClientFilesTask"
AssemblyFile="$(MSBuildThisFileDirectory)../tasks/$(_OpenRiaTaskFramework)/OpenRiaServices.Tools.dll" />

<UsingTask TaskName="OpenRiaServices.Tools.CleanOpenRiaClientFilesTask"
AssemblyFile="$(MSBuildThisFileDirectory)../tasks/$(_OpenRiaTaskFramework)/OpenRiaServices.Tools.dll" />

<UsingTask TaskName="$(MSBuildThisFileDirectory)../tasks/$(_OpenRiaTaskFramework)/OpenRiaServices.Tools.CleanOpenRiaClientFilesTask"
AssemblyFile="OpenRiaServices.Tools.dll" />

<!--
============================================================
Expand Down

0 comments on commit 3158a17

Please sign in to comment.