Skip to content

Commit

Permalink
Rewrite for performance improvements (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpmorris committed May 23, 2023
1 parent da8ab6d commit 86ff9ea
Show file tree
Hide file tree
Showing 74 changed files with 1,552 additions and 2,751 deletions.
3 changes: 3 additions & 0 deletions Docs/releases.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Releases

## New in 1.3.1
Rewritten to improve performance

## New in 1.2
Allow mixins to be applied to a class more than once [Fixes #10](https://github.com/mrpmorris/Morris.Moxy/issues/10)

Expand Down
9 changes: 3 additions & 6 deletions Publish.bat
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
cls
@echo **** 1.2.0 : UPDATED THE VERSION NUMBER IN THE PROJECT *AND* BATCH FILE? ****
@echo **** 1.3.1 : UPDATED THE VERSION NUMBER IN THE PROJECT *AND* BATCH FILE? ****
pause

cls
@call BuildAndTest.bat

@echo
@echo
@echo
@echo ======================

set /p ShouldPublish=Publish 1.2.0 [yes]?
set /p ShouldPublish=Publish 1.3.1 [yes]?
@if "%ShouldPublish%" == "yes" (
@echo PUBLISHING
dotnet nuget push .\Source\Lib\Morris.Moxy\bin\Release\Morris.Moxy.1.2.0.nupkg -k %MORRIS.NUGET.KEY% -s https://api.nuget.org/v3/index.json
dotnet nuget push .\Source\Lib\Morris.Moxy\bin\Release\Morris.Moxy.1.3.1.nupkg -k %MORRIS.NUGET.KEY% -s https://api.nuget.org/v3/index.json
)

2 changes: 1 addition & 1 deletion Source/Lib/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>10</LangVersion>
<Version>1.2.0</Version>
<Version>1.3.1</Version>

<Authors>Peter Morris</Authors>
<Company />
Expand Down
19 changes: 0 additions & 19 deletions Source/Lib/Morris.Moxy/Classes/AttributeNameAndSyntaxTree.cs

This file was deleted.

52 changes: 0 additions & 52 deletions Source/Lib/Morris.Moxy/Classes/ClassInfo.cs

This file was deleted.

52 changes: 0 additions & 52 deletions Source/Lib/Morris.Moxy/Classes/ClassesSelector.cs

This file was deleted.

177 changes: 0 additions & 177 deletions Source/Lib/Morris.Moxy/Classes/ClassesSourceGenerator.cs

This file was deleted.

17 changes: 0 additions & 17 deletions Source/Lib/Morris.Moxy/DataStructures/ClassMeta.cs

This file was deleted.

11 changes: 0 additions & 11 deletions Source/Lib/Morris.Moxy/DataStructures/CompilationError.cs

This file was deleted.

6 changes: 0 additions & 6 deletions Source/Lib/Morris.Moxy/DataStructures/MoxyMeta.cs

This file was deleted.

Loading

0 comments on commit 86ff9ea

Please sign in to comment.