This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
325 changed files
with
2,559 additions
and
577 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
*.nuget.props | ||
*.nuget.targets | ||
*.orig | ||
*.DS_Store | ||
*.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Documentation/en-EN/WhatsApp/ChatApi.WA.Account/Operations/Expiry.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,71 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<LangVersion>9</LangVersion> | ||
|
||
<!-- Basic technical information about the project --> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>9</LangVersion> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<!-- Generating a NuGet package (with docs) --> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
|
||
<!-- Information about the NuGet package --> | ||
<Title>ChatApi.Core</Title> | ||
<Authors>Roman Vorontsov</Authors> | ||
<Description>ChatApi is an unofficial cross-platform libraries for interacting with the chat-api.com</Description> | ||
<PackageLicenseUrl></PackageLicenseUrl> | ||
<RepositoryUrl>https://github.com/Zodt/ChatApi</RepositoryUrl> | ||
<RepositoryType>GitHub</RepositoryType> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<PackageIcon>ChatApi.png</PackageIcon> | ||
<PackageVersion>1.0.1-alpha</PackageVersion> | ||
<PackageTags>ChatApi, WhatsAppApi, WhatsApp-Api, WhatsApp</PackageTags> | ||
<PackageProjectUrl></PackageProjectUrl> | ||
<Description> | ||
ChatApi is an unofficial cross-platform libraries for interacting with the chat-api.com | ||
</Description> | ||
<ReleaseNotes> | ||
1. Refactoring code | ||
2. Add xml doc | ||
</ReleaseNotes> | ||
|
||
<!-- NuGet Package license information --> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageIcon>ChatApi.png</PackageIcon> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Properties\Resources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Properties\Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<!-- Information about the project repository --> | ||
<RepositoryType>GitHub</RepositoryType> | ||
<RepositoryUrl>https://github.com/Zodt/ChatApi</RepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\ChatApi.png"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
|
||
<!-- References --> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
|
||
<!-- Resources --> | ||
<Compile Update="Properties\Resources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
<EmbeddedResource Update="Properties\Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
|
||
<!-- NuGet project logo --> | ||
<None Include="../../Images/ChatApi.png"> | ||
<Pack>True</Pack> | ||
<PackagePath /> | ||
</None> | ||
|
||
</ItemGroup> | ||
|
||
</Project> | ||
<!-- Copying a NuGet package to a specific directory --> | ||
<Target Name="CopyCustomContent" AfterTargets="AfterBuild" | ||
Condition="Exists('..\..\Src\$(ProjectName)\bin\$(Configuration)\$(ProjectName).$(PackageVersion).nupkg')"> | ||
<Copy SourceFiles="..\..\Src\$(ProjectName)\bin\$(Configuration)\$(ProjectName).$(PackageVersion).nupkg" | ||
DestinationFolder="..\..\NuGet\$(PackageVersion)" SkipUnchangedFiles="false" ContinueOnError="true" /> | ||
</Target> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
namespace ChatApi.Core.Connect.Interfaces | ||
{ | ||
/// <summary/> | ||
public interface IConnect { } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.