Skip to content

Commit 7f7d8f4

Browse files
committed
Prepared solution for Uno Platform
- Removed Windows project due to namespace collisions - Fixed issues with boolconverters - Fixed build issues - Restructured projects and renamed Assembly name to match namespace - The '-' in the assemblyname causes some strange issues in the project generation of Uno. - Because of the log names and paths an error occured like microsoft/Windows-appsample-customers-orders-database#19. Shortening the folder depth resolves this issue. - Fixed build of Uno UWP project - Removed dash from fontname - Made WASM runnable but with errors - Updated nuget packages to .net core 3.1.8
1 parent 52c005c commit 7f7d8f4

File tree

1,693 files changed

+25789
-2324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,693 files changed

+25789
-2324
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,4 +328,4 @@ ASALocalRun/
328328

329329
# MFractors (Xamarin productivity tool) working folder
330330
.mfractor/
331-
/samples/I-Synergy.Framework.Storage.Azure.Sample/appsettings.Development.json
331+
/samples/ISynergy.Framework.Storage.Azure.Sample/appsettings.Development.json

I-Synergy.Framework.sln

+1,232-130
Large diffs are not rendered by default.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ ___
2828
| [I-Synergy.Framework.Storage.Azure](https://www.nuget.org/packages/I-Synergy.Framework.Storage.Azure/) | ![NuGet Badge](https://buildstats.info/nuget/I-Synergy.Framework.Storage.Azure) |
2929
| [I-Synergy.Framework.Payment](https://www.nuget.org/packages/I-Synergy.Framework.Payment/) | ![NuGet Badge](https://buildstats.info/nuget/I-Synergy.Framework.Payment) |
3030
| [I-Synergy.Framework.Payment.Mollie](https://www.nuget.org/packages/I-Synergy.Framework.Payment.Mollie/) | ![NuGet Badge](https://buildstats.info/nuget/I-Synergy.Framework.Payment.Mollie) |
31-
| [I-Synergy.Framework.Windows](https://www.nuget.org/packages/I-Synergy.Framework.Windows/) | ![NuGet Badge](https://buildstats.info/nuget/I-Synergy.Framework.Windows) |
31+
| [I-Synergy.Framework.UI](https://www.nuget.org/packages/I-Synergy.Framework.UI/) | ![NuGet Badge](https://buildstats.info/nuget/I-Synergy.Framework.UI) |

azure-pipelines.yml

+59-59
Large diffs are not rendered by default.

build/sign.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Write-Host $certFile
1212
$exe = Get-ChildItem -Path "C:\program files (x86)\Windows Kits" -Recurse -Include signtool.exe | select -First 1
1313
Write-Host $exe
1414

15-
ForEach ($file in (Get-ChildItem $buildDir -Filter I-Synergy* -Recurse))
15+
ForEach ($file in (Get-ChildItem $buildDir -Filter ISynergy* -Recurse))
1616
{
1717
if ($file.Extension -eq ".dll")
1818
{

codecoverage.runsettings

+15-15
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88
<!-- Match assembly file paths: -->
99
<ModulePaths>
1010
<Include>
11-
<ModulePath>.*\I-Synergy.Framework.AspNetCore.dll</ModulePath>
12-
<ModulePath>.*\I-Synergy.Framework.AspNetCore.Authentication.dll</ModulePath>
13-
<ModulePath>.*\I-Synergy.Framework.Core.dll</ModulePath>
14-
<ModulePath>.*\I-Synergy.Framework.Core.Linq.dll</ModulePath>
15-
<ModulePath>.*\I-Synergy.Framework.EntityFramework.dll</ModulePath>
16-
<ModulePath>.*\I-Synergy.Framework.Financial.dll</ModulePath>
17-
<ModulePath>.*\I-Synergy.Framework.Geography.dll</ModulePath>
18-
<ModulePath>.*\I-Synergy.Framework.Mathematics.dll</ModulePath>
19-
<ModulePath>.*\I-Synergy.Framework.MessageBus.dll</ModulePath>
20-
<ModulePath>.*\I-Synergy.Framework.MessageBus.Azure.dll</ModulePath>
21-
<ModulePath>.*\I-Synergy.Framework.Models.dll</ModulePath>
22-
<ModulePath>.*\I-Synergy.Framework.Mvvm.dll</ModulePath>
23-
<ModulePath>.*\I-Synergy.Framework.Storage.dll</ModulePath>
24-
<ModulePath>.*\I-Synergy.Framework.Storage.Azure.dll</ModulePath>
25-
<ModulePath>.*\I-Synergy.Framework.Windows.dll</ModulePath>
11+
<ModulePath>.*\ISynergy.Framework.AspNetCore.dll</ModulePath>
12+
<ModulePath>.*\ISynergy.Framework.AspNetCore.Authentication.dll</ModulePath>
13+
<ModulePath>.*\ISynergy.Framework.Core.dll</ModulePath>
14+
<ModulePath>.*\ISynergy.Framework.Core.Linq.dll</ModulePath>
15+
<ModulePath>.*\ISynergy.Framework.EntityFramework.dll</ModulePath>
16+
<ModulePath>.*\ISynergy.Framework.Financial.dll</ModulePath>
17+
<ModulePath>.*\ISynergy.Framework.Geography.dll</ModulePath>
18+
<ModulePath>.*\ISynergy.Framework.Mathematics.dll</ModulePath>
19+
<ModulePath>.*\ISynergy.Framework.MessageBus.dll</ModulePath>
20+
<ModulePath>.*\ISynergy.Framework.MessageBus.Azure.dll</ModulePath>
21+
<ModulePath>.*\ISynergy.Framework.Models.dll</ModulePath>
22+
<ModulePath>.*\ISynergy.Framework.Mvvm.dll</ModulePath>
23+
<ModulePath>.*\ISynergy.Framework.Storage.dll</ModulePath>
24+
<ModulePath>.*\ISynergy.Framework.Storage.Azure.dll</ModulePath>
25+
<ModulePath>.*\ISynergy.Framework.UI.dll</ModulePath>
2626
</Include>
2727
<Exclude>
2828
<ModulePath>.*tests.dll</ModulePath>

docfx_project/docfx.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
"src": [
55
{
66
"files": [
7-
"src/I-Synergy.Framework.Core/I-Synergy.Framework.Core.csproj",
8-
"src/I-Synergy.Framework.AspNetCore/I-Synergy.Framework.AspNetCore.csproj",
9-
"src/I-Synergy.Framework.AspNetCore.Authentication/I-Synergy.Framework.AspNetCore.Authentication.csproj",
10-
"src/I-Synergy.Framework.EntityFramework/I-Synergy.Framework.EntityFramework.csproj",
11-
"src/I-Synergy.Framework.Financial/I-Synergy.Framework.Financial.csproj",
12-
"src/I-Synergy.Framework.Models/I-Synergy.Framework.Models.csproj",
13-
"src/I-Synergy.Framework.Entities/I-Synergy.Framework.Entities.csproj",
14-
"src/I-Synergy.Framework.Geography/I-Synergy.Framework.Geography.csproj",
15-
"src/I-Synergy.Framework.Mathematics/I-Synergy.Framework.Mathematics.csproj",
16-
"src/I-Synergy.Framework.MessageBus/I-Synergy.Framework.MessageBus.csproj",
17-
"src/I-Synergy.Framework.MessageBus.Azure/I-Synergy.Framework.MessageBus.Azure.csproj",
18-
"src/I-Synergy.Framework.Mvvm/I-Synergy.Framework.Mvvm.csproj",
19-
"src/I-Synergy.Framework.Storage/I-Synergy.Framework.Storage.csproj",
20-
"src/I-Synergy.Framework.Storage.Azure/I-Synergy.Framework.Storage.Azure.csproj",
21-
"src/I-Synergy.Framework.Windows/I-Synergy.Framework.Windows.csproj"
7+
"src/ISynergy.Framework.Core/ISynergy.Framework.Core.csproj",
8+
"src/ISynergy.Framework.AspNetCore/ISynergy.Framework.AspNetCore.csproj",
9+
"src/ISynergy.Framework.AspNetCore.Authentication/ISynergy.Framework.AspNetCore.Authentication.csproj",
10+
"src/ISynergy.Framework.EntityFramework/ISynergy.Framework.EntityFramework.csproj",
11+
"src/ISynergy.Framework.Financial/ISynergy.Framework.Financial.csproj",
12+
"src/ISynergy.Framework.Models/ISynergy.Framework.Models.csproj",
13+
"src/ISynergy.Framework.Entities/ISynergy.Framework.Entities.csproj",
14+
"src/ISynergy.Framework.Geography/ISynergy.Framework.Geography.csproj",
15+
"src/ISynergy.Framework.Mathematics/ISynergy.Framework.Mathematics.csproj",
16+
"src/ISynergy.Framework.MessageBus/ISynergy.Framework.MessageBus.csproj",
17+
"src/ISynergy.Framework.MessageBus.Azure/ISynergy.Framework.MessageBus.Azure.csproj",
18+
"src/ISynergy.Framework.Mvvm/ISynergy.Framework.Mvvm.csproj",
19+
"src/ISynergy.Framework.Storage/ISynergy.Framework.Storage.csproj",
20+
"src/ISynergy.Framework.Storage.Azure/ISynergy.Framework.Storage.Azure.csproj",
21+
"src/ISynergy.Framework.Windows/ISynergy.Framework.Windows.csproj"
2222
],
2323
"src": "..",
2424
"exclude": [

nuget/I-Synergy.Framework.AspNetCore.Authentication.nuspec renamed to nuget/ISynergy.Framework.AspNetCore.Authentication.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.AspNetCore.Authentication</id>
55
<version>$Version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -25,8 +25,8 @@
2525

2626
<files>
2727
<file src="Icon_128.png" target="" />
28-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.deps.json" target="lib\netcoreapp3.1" />
29-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.dll" target="lib\netcoreapp3.1" />
30-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.pdb" target="lib\netcoreapp3.1" />
28+
<file src="$AssemblyFolder$\ISynergy.Framework.AspNetCore.Authentication\$BuildConfiguration$\netcoreapp3.1\$projectname$.deps.json" target="lib\netcoreapp3.1" />
29+
<file src="$AssemblyFolder$\ISynergy.Framework.AspNetCore.Authentication\$BuildConfiguration$\netcoreapp3.1\$projectname$.dll" target="lib\netcoreapp3.1" />
30+
<file src="$AssemblyFolder$\ISynergy.Framework.AspNetCore.Authentication\$BuildConfiguration$\netcoreapp3.1\$projectname$.pdb" target="lib\netcoreapp3.1" />
3131
</files>
3232
</package>

nuget/I-Synergy.Framework.AspNetCore.nuspec renamed to nuget/ISynergy.Framework.AspNetCore.nuspec

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.AspNetCore</id>
55
<version>$Version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -19,17 +19,17 @@
1919
<group targetFramework=".NETCoreApp3.1">
2020
<dependency id="Microsoft.ApplicationInsights.AspNetCore" version="2.14.0" />
2121
<dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="5.2.8" />
22-
<dependency id="Microsoft.EntityFrameworkCore" version="3.1.7" />
23-
<dependency id="Microsoft.AspNetCore.Mvc.NewtonsoftJson" version="3.1.7" />
22+
<dependency id="Microsoft.EntityFrameworkCore" version="3.1.8" />
23+
<dependency id="Microsoft.AspNetCore.Mvc.NewtonsoftJson" version="3.1.8" />
2424
<dependency id="I-Synergy.Framework.Core" version="[$PackageVersion$]" />
2525
</group>
2626
</dependencies>
2727
</metadata>
2828

2929
<files>
3030
<file src="Icon_128.png" target="" />
31-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.deps.json" target="lib\netcoreapp3.1" />
32-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.dll" target="lib\netcoreapp3.1" />
33-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.pdb" target="lib\netcoreapp3.1" />
31+
<file src="$AssemblyFolder$\ISynergy.Framework.AspNetCore\$BuildConfiguration$\netcoreapp3.1\$projectname$.deps.json" target="lib\netcoreapp3.1" />
32+
<file src="$AssemblyFolder$\ISynergy.Framework.AspNetCore\$BuildConfiguration$\netcoreapp3.1\$projectname$.dll" target="lib\netcoreapp3.1" />
33+
<file src="$AssemblyFolder$\ISynergy.Framework.AspNetCore\$BuildConfiguration$\netcoreapp3.1\$projectname$.pdb" target="lib\netcoreapp3.1" />
3434
</files>
3535
</package>

nuget/I-Synergy.Framework.Core.nuspec renamed to nuget/ISynergy.Framework.Core.nuspec

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.Core</id>
55
<version>$version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -17,8 +17,8 @@
1717

1818
<dependencies>
1919
<group targetFramework=".NETStandard2.0">
20-
<dependency id="Microsoft.Extensions.Configuration.Abstractions" version="3.1.7" />
21-
<dependency id="Microsoft.Extensions.Configuration.Binder" version="3.1.7" />
20+
<dependency id="Microsoft.Extensions.Configuration.Abstractions" version="3.1.8" />
21+
<dependency id="Microsoft.Extensions.Configuration.Binder" version="3.1.8" />
2222
<dependency id="System.ComponentModel.Annotations" version="4.7.0" />
2323
<dependency id="Newtonsoft.Json" version="12.0.3" />
2424
</group>
@@ -27,8 +27,8 @@
2727

2828
<files>
2929
<file src="Icon_128.png" target="" />
30-
<file src="$AssemblyFolder$\$ProjectName$\$BuildConfiguration$\netstandard2.0\$ProjectName$.deps.json" target="lib\netstandard2.0" />
31-
<file src="$AssemblyFolder$\$ProjectName$\$BuildConfiguration$\netstandard2.0\$ProjectName$.dll" target="lib\netstandard2.0" />
32-
<file src="$AssemblyFolder$\$ProjectName$\$BuildConfiguration$\netstandard2.0\$ProjectName$.pdb" target="lib\netstandard2.0" />
30+
<file src="$AssemblyFolder$\ISynergy.Framework.Core\$BuildConfiguration$\netstandard2.0\$ProjectName$.deps.json" target="lib\netstandard2.0" />
31+
<file src="$AssemblyFolder$\ISynergy.Framework.Core\$BuildConfiguration$\netstandard2.0\$ProjectName$.dll" target="lib\netstandard2.0" />
32+
<file src="$AssemblyFolder$\ISynergy.Framework.Core\$BuildConfiguration$\netstandard2.0\$ProjectName$.pdb" target="lib\netstandard2.0" />
3333
</files>
3434
</package>

nuget/I-Synergy.Framework.EntityFramework.nuspec renamed to nuget/ISynergy.Framework.EntityFramework.nuspec

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.EntityFramework</id>
55
<version>$Version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -17,18 +17,18 @@
1717

1818
<dependencies>
1919
<group targetFramework=".NETCoreApp3.1">
20-
<dependency id="Microsoft.AspNetCore.Identity.EntityFrameworkCore" version="3.1.7" />
21-
<dependency id="Microsoft.EntityFrameworkCore" version="3.1.7" />
22-
<dependency id="Microsoft.EntityFrameworkCore.SqlServer" version="3.1.7" />
20+
<dependency id="Microsoft.AspNetCore.Identity.EntityFrameworkCore" version="3.1.8" />
21+
<dependency id="Microsoft.EntityFrameworkCore" version="3.1.8" />
22+
<dependency id="Microsoft.EntityFrameworkCore.SqlServer" version="3.1.8" />
2323
<dependency id="I-Synergy.Framework.Core" version="[$PackageVersion$]" />
2424
</group>
2525
</dependencies>
2626
</metadata>
2727

2828
<files>
2929
<file src="Icon_128.png" target="" />
30-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.deps.json" target="lib\netcoreapp3.1" />
31-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.dll" target="lib\netcoreapp3.1" />
32-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netcoreapp3.1\$projectname$.pdb" target="lib\netcoreapp3.1" />
30+
<file src="$AssemblyFolder$\ISynergy.Framework.EntityFramework\$BuildConfiguration$\netcoreapp3.1\$projectname$.deps.json" target="lib\netcoreapp3.1" />
31+
<file src="$AssemblyFolder$\ISynergy.Framework.EntityFramework\$BuildConfiguration$\netcoreapp3.1\$projectname$.dll" target="lib\netcoreapp3.1" />
32+
<file src="$AssemblyFolder$\ISynergy.Framework.EntityFramework\$BuildConfiguration$\netcoreapp3.1\$projectname$.pdb" target="lib\netcoreapp3.1" />
3333
</files>
3434
</package>

nuget/I-Synergy.Framework.Financial.nuspec renamed to nuget/ISynergy.Framework.Financial.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.Financial</id>
55
<version>$Version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -24,8 +24,8 @@
2424

2525
<files>
2626
<file src="Icon_128.png" target="" />
27-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
28-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
29-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
27+
<file src="$AssemblyFolder$\ISynergy.Framework.Financial\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
28+
<file src="$AssemblyFolder$\ISynergy.Framework.Financial\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
29+
<file src="$AssemblyFolder$\ISynergy.Framework.Financial\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
3030
</files>
3131
</package>

nuget/I-Synergy.Framework.Geography.nuspec renamed to nuget/ISynergy.Framework.Geography.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.Geography</id>
55
<version>$Version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -24,8 +24,8 @@
2424

2525
<files>
2626
<file src="Icon_128.png" target="" />
27-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
28-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
29-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
27+
<file src="$AssemblyFolder$\ISynergy.Framework.Geography\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
28+
<file src="$AssemblyFolder$\ISynergy.Framework.Geography\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
29+
<file src="$AssemblyFolder$\ISynergy.Framework.Geography\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
3030
</files>
3131
</package>

nuget/I-Synergy.Framework.Mathematics.nuspec renamed to nuget/ISynergy.Framework.Mathematics.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.Mathematics</id>
55
<version>$Version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -18,8 +18,8 @@
1818

1919
<files>
2020
<file src="Icon_128.png" target="" />
21-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
22-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
23-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
21+
<file src="$AssemblyFolder$\ISynergy.Framework.Mathematics\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
22+
<file src="$AssemblyFolder$\ISynergy.Framework.Mathematics\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
23+
<file src="$AssemblyFolder$\ISynergy.Framework.Mathematics\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
2424
</files>
2525
</package>

nuget/I-Synergy.Framework.MessageBus.Azure.nuspec renamed to nuget/ISynergy.Framework.MessageBus.Azure.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package >
33
<metadata>
4-
<id>$ProjectName$</id>
4+
<id>I-Synergy.Framework.MessageBus.Azure</id>
55
<version>$Version$</version>
66
<authors>Ismail Hassani</authors>
77
<owners>International Intelligence</owners>
@@ -26,8 +26,8 @@
2626

2727
<files>
2828
<file src="Icon_128.png" target="" />
29-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
30-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
31-
<file src="$AssemblyFolder$\$projectname$\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
29+
<file src="$AssemblyFolder$\ISynergy.Framework.MessageBus.Azure\$BuildConfiguration$\netstandard2.0\$projectname$.deps.json" target="lib\netstandard2.0" />
30+
<file src="$AssemblyFolder$\ISynergy.Framework.MessageBus.Azure\$BuildConfiguration$\netstandard2.0\$projectname$.dll" target="lib\netstandard2.0" />
31+
<file src="$AssemblyFolder$\ISynergy.Framework.MessageBus.Azure\$BuildConfiguration$\netstandard2.0\$projectname$.pdb" target="lib\netstandard2.0" />
3232
</files>
3333
</package>

0 commit comments

Comments
 (0)