Skip to content

Commit

Permalink
Merge pull request #118 from SyndARn/TestingSimpleActor
Browse files Browse the repository at this point in the history
Testing simple actor
  • Loading branch information
SyndARn committed May 9, 2020
2 parents ce592a5 + d826fce commit 717ba20
Show file tree
Hide file tree
Showing 18 changed files with 1,446 additions and 114 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyName>Actor.Base.Core</AssemblyName>
<RootNamespace>Actor.Base</RootNamespace>
<SignAssembly>True</SignAssembly>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,13 @@
<ProjectReference Include="..\Actor.Util.Core\Actor.Util.Core.csproj" />
</ItemGroup>

<ItemGroup>
<None Update="CsvData\wordRime.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="CsvData\wordSyllabe.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
18 changes: 18 additions & 0 deletions ARnActorSolution/Core/Actor.DbService.Core/CsvData/wordRime.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
roi,roi
rois,roi
quatre,âtre
âtre,âtre
enfin,destin
destin,destin
abruti,outil
un,un
deux,deux
deux,de
quatre,quatre
trois,roi
horreur,bonheur
bonheur,bonheur
jour,jour
détours,jour
tour,tour
amour,tour
18 changes: 18 additions & 0 deletions ARnActorSolution/Core/Actor.DbService.Core/CsvData/wordSyllabe.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
roi,1
rois,1
quatre,2
un,1
abruti,3
outil,2
deux,1
trois,1
amour,2
jour,1
bonjour,2
hymen,2
cause,2
absence,3
évidence,4
renoncer,3
renoncez,3
avance,3

0 comments on commit 717ba20

Please sign in to comment.