A package for .NET to help you build a sitemap according to the google recommendations. see this link to learn about sitemaps.
if you like this work, please consider give the project star 🌟
Using the .NET CLI tools:
dotnet add package Xdot.Sitemap
Using the NuGet CLI:
nuget install Xdot.Sitemap
Using the Package Manager Console:
Install-Package Xdot.Sitemap
var urls = new List<SitemapUrl>
{
new("https://www.example.com"),
new("https://www.example.com/contact-us"),
}
await using var stream = new MemoryStream();
await urls.WriteToAsync(stream);
This code will write the following to the memory stream:
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.example.com</loc>
</url>
<url>
<loc>https://www.example.com/contact-us</loc>
</url>
</urlset>
var urls = new List<SitemapUrl>
{
new(new SitemapAlternateUrl[]
{
new()
{
Location = "https://www.example.com/english/page.html",
LanguageCode = "en",
},
new()
{
Location = "https://www.example.com/deutsch/page.html",
LanguageCode = "de",
},
new()
{
Location = "https://www.example.com/schweiz-deutsch/page.html",
LanguageCode = "de-ch",
},
}),
// ...
};
await using var stream = new MemoryStream();
await urls.WriteToAsync(stream);
This code will write the following to the memory stream:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.example.com/english/page.html</loc>
<xhtml:link rel="alternate" hreflang="en" href="https://www.example.com/english/page.html" />
<xhtml:link rel="alternate" hreflang="de" href="https://www.example.com/deutsch/page.html" />
<xhtml:link rel="alternate" hreflang="de-ch" href="https://www.example.com/schweiz-deutsch/page.html" />
</url>
<url>
<loc>https://www.example.com/deutsch/page.html</loc>
<xhtml:link rel="alternate" hreflang="en" href="https://www.example.com/english/page.html" />
<xhtml:link rel="alternate" hreflang="de" href="https://www.example.com/deutsch/page.html" />
<xhtml:link rel="alternate" hreflang="de-ch" href="https://www.example.com/schweiz-deutsch/page.html" />
</url>
<url>
<loc>https://www.example.com/schweiz-deutsch/page.html</loc>
<xhtml:link rel="alternate" hreflang="en" href="https://www.example.com/english/page.html" />
<xhtml:link rel="alternate" hreflang="de" href="https://www.example.com/deutsch/page.html" />
<xhtml:link rel="alternate" hreflang="de-ch" href="https://www.example.com/schweiz-deutsch/page.html" />
</url>
</urlset>
var sitemapReferences = new List<SitemapReference>
{
new() { Location = "https://www.Example.com/ümlaT-sitemap.xml" },
new() { Location = "https://www.example.com/اداره-اعلانات" },
}
await using var stream = new MemoryStream()
await references.WriteToAsync(stream);
This code will write the following to the memory stream:
<?xml version="1.0" encoding="utf-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://www.example.com/%C3%BCmlat-sitemap.xml</loc>
</sitemap>
<sitemap>
<loc>https://www.example.com/%D8%A7%D8%AF%D8%A7%D8%B1%D9%87-%D8%A7%D8%B9%D9%84%D8%A7%D9%86%D8%A7%D8%AA</loc>
</sitemap>
</sitemapindex>
This project is licensed under the Apache 2.0 license.
If you have any suggestions, comments or questions, please feel free to contact me on:
Email: [email protected]