Skip to content

Commit

Permalink
v14.1.13942
Browse files Browse the repository at this point in the history
  • Loading branch information
ITHitBuild committed Oct 16, 2024
1 parent 3a7b634 commit c99d86e
Show file tree
Hide file tree
Showing 136 changed files with 4,407 additions and 2,694 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<VersionPrefix>14.1.13916</VersionPrefix>
<VersionPrefix>14.1.13942</VersionPrefix>
<AssemblyName>CalDAVServer.FileSystemStorage.AspNetCore</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>9.0</LangVersion>
Expand All @@ -16,10 +16,10 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Server" Version="14.1.13916" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13916" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13916" />
<PackageReference Include="System.Data.OleDb" Version="8.0.0" />
<PackageReference Include="ITHit.Server" Version="14.1.13942" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13942" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13942" />
<PackageReference Include="System.Data.OleDb" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Collab" Version="1.0.0.759" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ public class DavContextConfig
/// File system search provider.
/// </summary>
public string WindowsSearchProvider { get; set; } = string.Empty;

/// <summary>
/// This folder used for extended attributes storage.
/// </summary>
public string AttrStoragePath { get; set; } = string.Empty;

}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public DavEngineCore(IOptions<DavEngineConfig> config, ILogger logger, IWebHostE
CorsAllowedFor = engineConfig.CorsAllowedFor;
License = engineConfig.License;

Logger = logger;
Logger = logger;

// Set custom handler to process GET and HEAD requests to folders and display
// info about how to connect to server. We are using the same custom handler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

// Specifies whether the WebDAV Engine shall use URIs with a domain name.
// Some WebDAV clients including MS Mini-redirector does not support URIs without domain name.
"UseFullUris": true
"UseFullUris": true,
},

// WebDAV and G Suite Context configuration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<VersionPrefix>14.1.13916</VersionPrefix>
<VersionPrefix>14.1.13942</VersionPrefix>
<AssemblyName>CalDAVServer.SqlStorage.AspNetCore</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>9.0</LangVersion>
Expand All @@ -19,10 +19,10 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Server" Version="14.1.13916" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13916" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13916" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="ITHit.Server" Version="14.1.13942" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13942" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13942" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Collab" Version="1.0.0.759" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ namespace CalDAVServer.SqlStorage.AspNetCore.Configuration
/// </summary>
public class DavContextConfig
{

/// <summary>
/// Database conntion string.
/// </summary>
public string ConnectionString { get; set; } = string.Empty;

}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion CS/CalDAVServer.SqlStorage.AspNetCore/DavEngineCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public DavEngineCore(IOptions<DavEngineConfig> config, ILogger logger, IWebHostE
CorsAllowedFor = engineConfig.CorsAllowedFor;
License = engineConfig.License;

Logger = logger;
Logger = logger;

// Set custom handler to process GET and HEAD requests to folders and display
// info about how to connect to server. We are using the same custom handler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

// Specifies whether the WebDAV Engine shall use URIs with a domain name.
// Some WebDAV clients including MS Mini-redirector does not support URIs without domain name.
"UseFullUris": true
"UseFullUris": true,
},

// WebDAV and G Suite Context configuration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<VersionPrefix>14.1.13916</VersionPrefix>
<VersionPrefix>14.1.13942</VersionPrefix>
<AssemblyName>CardDAVServer.FileSystemStorage.AspNetCore</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>9.0</LangVersion>
Expand All @@ -16,10 +16,10 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Server" Version="14.1.13916" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13916" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13916" />
<PackageReference Include="System.Data.OleDb" Version="8.0.0" />
<PackageReference Include="ITHit.Server" Version="14.1.13942" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13942" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13942" />
<PackageReference Include="System.Data.OleDb" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Collab" Version="1.0.0.759" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ public class DavContextConfig
/// File system search provider.
/// </summary>
public string WindowsSearchProvider { get; set; } = string.Empty;

/// <summary>
/// This folder used for extended attributes storage.
/// </summary>
public string AttrStoragePath { get; set; } = string.Empty;

}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public DavEngineCore(IOptions<DavEngineConfig> config, ILogger logger, IWebHostE
CorsAllowedFor = engineConfig.CorsAllowedFor;
License = engineConfig.License;

Logger = logger;
Logger = logger;

// Set custom handler to process GET and HEAD requests to folders and display
// info about how to connect to server. We are using the same custom handler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

// Specifies whether the WebDAV Engine shall use URIs with a domain name.
// Some WebDAV clients including MS Mini-redirector does not support URIs without domain name.
"UseFullUris": true
"UseFullUris": true,
},

// WebDAV and G Suite Context configuration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<VersionPrefix>14.1.13916</VersionPrefix>
<VersionPrefix>14.1.13942</VersionPrefix>
<AssemblyName>CardDAVServer.SqlStorage.AspNetCore</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>9.0</LangVersion>
Expand All @@ -19,10 +19,10 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Server" Version="14.1.13916" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13916" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13916" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="ITHit.Server" Version="14.1.13942" />
<PackageReference Include="ITHit.Server.Core" Version="14.1.13942" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13942" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ITHit.Collab" Version="1.0.0.759" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ namespace CardDAVServer.SqlStorage.AspNetCore.Configuration
/// </summary>
public class DavContextConfig
{

/// <summary>
/// Database conntion string.
/// </summary>
public string ConnectionString { get; set; } = string.Empty;

}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion CS/CardDAVServer.SqlStorage.AspNetCore/DavEngineCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public DavEngineCore(IOptions<DavEngineConfig> config, ILogger logger, IWebHostE
CorsAllowedFor = engineConfig.CorsAllowedFor;
License = engineConfig.License;

Logger = logger;
Logger = logger;

// Set custom handler to process GET and HEAD requests to folders and display
// info about how to connect to server. We are using the same custom handler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

// Specifies whether the WebDAV Engine shall use URIs with a domain name.
// Some WebDAV clients including MS Mini-redirector does not support URIs without domain name.
"UseFullUris": true
"UseFullUris": true,
},

// WebDAV and G Suite Context configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
<BundleAssemblies>false</BundleAssemblies>
</PropertyGroup>
<ItemGroup>
<Reference Include="ITHit.WebDAV.Server, Version=14.1.13916, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.14.1.13916\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
<Reference Include="ITHit.WebDAV.Server, Version=14.1.13942, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.14.1.13942\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
</Reference>
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=14.1.13916, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.14.1.13916\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=14.1.13942, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.14.1.13942\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNetCore.Hosting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNetCore.Hosting.2.0.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll</HintPath>
Expand Down
4 changes: 2 additions & 2 deletions CS/HttpListener/HttpListener.Android/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="ITHit.WebDAV.Server" version="14.1.13916" targetFramework="monoandroid60" />
<package id="ITHit.WebDAV.Server.HttpListener" version="14.1.13916" targetFramework="monoandroid60" />
<package id="ITHit.WebDAV.Server" version="14.1.13942" targetFramework="monoandroid60" />
<package id="ITHit.WebDAV.Server.HttpListener" version="14.1.13942" targetFramework="monoandroid60" />
<package id="Microsoft.AspNetCore.Hosting" version="2.0.0" targetFramework="monoandroid71" />
<package id="Microsoft.AspNetCore.Hosting.Abstractions" version="2.0.0" targetFramework="monoandroid71" />
<package id="Microsoft.AspNetCore.Hosting.Server.Abstractions" version="2.0.0" targetFramework="monoandroid71" />
Expand Down
8 changes: 4 additions & 4 deletions CS/HttpListener/HttpListener.iOS/HttpListener.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@
</InterfaceDefinition>
</ItemGroup>
<ItemGroup>
<Reference Include="ITHit.WebDAV.Server, Version=14.1.13916, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.14.1.13916\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
<Reference Include="ITHit.WebDAV.Server, Version=14.1.13942, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.14.1.13942\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
</Reference>
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=14.1.13916, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.14.1.13916\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=14.1.13942, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.14.1.13942\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNetCore.Hosting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNetCore.Hosting.2.0.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll</HintPath>
Expand Down
4 changes: 2 additions & 2 deletions CS/HttpListener/HttpListener.iOS/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="ITHit.WebDAV.Server" version="14.1.13916" targetFramework="xamarinios10" />
<package id="ITHit.WebDAV.Server.HttpListener" version="14.1.13916" targetFramework="xamarinios10" />
<package id="ITHit.WebDAV.Server" version="14.1.13942" targetFramework="xamarinios10" />
<package id="ITHit.WebDAV.Server.HttpListener" version="14.1.13942" targetFramework="xamarinios10" />
<package id="Microsoft.AspNetCore.Hosting" version="2.0.0" targetFramework="xamarinios10" />
<package id="Microsoft.AspNetCore.Hosting.Abstractions" version="2.0.0" targetFramework="xamarinios10" />
<package id="Microsoft.AspNetCore.Hosting.Server.Abstractions" version="2.0.0" targetFramework="xamarinios10" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ITHit.WebDAV.Server.HttpListener" Version="14.1.13916" />
<PackageReference Include="ITHit.WebDAV.Server.HttpListener" Version="14.1.13942" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion CS/HttpListener/SharedMobile/SharedMobile.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13916" />
<PackageReference Include="ITHit.WebDAV.Server" Version="14.1.13942" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
Expand Down
Loading

0 comments on commit c99d86e

Please sign in to comment.