Initial Commit ...

This commit is contained in:
2025-11-04 12:12:36 +03:30
commit 83a9500f30
12 changed files with 58 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
bin
obj
View File
+3
View File
@@ -0,0 +1,3 @@
namespace xStringService.Constants {
public class xStringServiceConstants { }
}
+3
View File
@@ -0,0 +1,3 @@
namespace xStringService.DI {
public static class XDIHelperExtension { }
}
+3
View File
@@ -0,0 +1,3 @@
namespace xStringService.Extensions {
public static class xStringServiceExtensions { }
}
View File
View File
View File
View File
+11
View File
@@ -0,0 +1,11 @@
# xStringService
it is a Part of xDashboard on SaherElm IT Center which provides String Resources Futures ...
## Maintainer
Hadi Khazaee asl
[https://www.saherelm.ir](https://www.saherelm.ir)
[hadi_khazaee_asl@yahoo.com](mailto:hadi_khazaee_asl@yahoo.com)
+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="baget" value="https://nuget.saherelmhub.ir/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>
+29
View File
@@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Runtime Definition -->
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>xDashboard.xStringService</PackageId>
<Version>1.0.0</Version>
<Authors>Hadi Khazaee Asl</Authors>
<Company>SaherElm IT Center</Company>
<Description>
it is a Part of xDashboard on SaherElm IT Center which provides String Resources Futures ...
</Description>
<!-- Icon Definition -->
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<!-- Icon Handling -->
<ItemGroup>
<None Include="../../Resources/Images/favicon.png" Link="icon.png" Pack="true" PackagePath="\icon.png" />
</ItemGroup>
<!-- Local Dependencies -->
<ItemGroup>
<ProjectReference Include="../xDataService/xDataService.csproj" />
<ProjectReference Include="../xPushService/xPushService.csproj" />
</ItemGroup>
</Project>