fix packages and .vs

This commit is contained in:
PhoenixARC
2021-08-09 21:28:17 -04:00
parent 10f1c8daa0
commit 1d28754dec
2906 changed files with 5412863 additions and 3 deletions

3
.gitignore vendored
View File

@@ -23,7 +23,6 @@ bld/
[Ll]og/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
@@ -151,9 +150,7 @@ publish/
PublishScripts/
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed

Binary file not shown.

View File

@@ -0,0 +1,15 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WeaverRuntimeToken
Condition="$(MSBuildRuntimeType) != 'Core'">netclassicweaver</WeaverRuntimeToken>
<WeaverRuntimeToken
Condition="$(MSBuildRuntimeType) == 'Core'">netstandardweaver</WeaverRuntimeToken>
</PropertyGroup>
<ItemGroup>
<WeaverFiles
Include="$(MsBuildThisFileDirectory)..\$(WeaverRuntimeToken)\$(MSBuildThisFileName).dll" />
</ItemGroup>
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Costura</name>
</assembly>
<members>
<member name="T:CosturaUtility">
<summary>
Contains methods for interacting with the Costura system.
</summary>
</member>
<member name="M:CosturaUtility.Initialize">
<summary>
Call this to Initialize the Costura system.
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,110 @@
<?xml version="1.0" encoding="utf-8" ?>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:all>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
<xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeDebugSymbols" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeReferences" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if (.NET Core) runtime assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCompression" type="xs:boolean">
<xs:annotation>
<xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCleanup" type="xs:boolean">
<xs:annotation>
<xs:documentation>As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="LoadAtModuleInit" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>

View File

@@ -0,0 +1,110 @@
<?xml version="1.0" encoding="utf-8" ?>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:all>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
<xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeDebugSymbols" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeReferences" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if (.NET Core) runtime assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCompression" type="xs:boolean">
<xs:annotation>
<xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCleanup" type="xs:boolean">
<xs:annotation>
<xs:documentation>As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="LoadAtModuleInit" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of (.NET Core) runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>

Binary file not shown.

View File

@@ -0,0 +1,15 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WeaverRuntimeToken
Condition="$(MSBuildRuntimeType) != 'Core'">netclassicweaver</WeaverRuntimeToken>
<WeaverRuntimeToken
Condition="$(MSBuildRuntimeType) == 'Core'">netstandardweaver</WeaverRuntimeToken>
</PropertyGroup>
<ItemGroup>
<WeaverFiles
Include="$(MsBuildThisFileDirectory)..\$(WeaverRuntimeToken)\$(MSBuildThisFileName).dll" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,13 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="$(CosturaRemoveCopyLocalFilesToPublish) == ''">
<CosturaRemoveCopyLocalFilesToPublish>true</CosturaRemoveCopyLocalFilesToPublish>
</PropertyGroup>
<Target Name="CosturaRemoveAlreadyEmbeddedFilesFromPublish" AfterTargets="ComputeResolvedFilesToPublishList" Condition="$(CosturaRemoveCopyLocalFilesToPublish) == 'true'">
<ItemGroup>
<ResolvedFileToPublish Remove="@(FodyRemovedReferenceCopyLocalPaths)" />
</ItemGroup>
</Target>
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Costura</name>
</assembly>
<members>
<member name="T:MethodTimeLogger">
<summary>
Note: do not rename this class or put it inside a namespace.
</summary>
</member>
<member name="T:CosturaUtility">
<summary>
Contains methods for interacting with the Costura system.
</summary>
</member>
<member name="M:CosturaUtility.Initialize">
<summary>
Call this to Initialize the Costura system.
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,115 @@
<?xml version="1.0" encoding="utf-8" ?>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:all>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
<xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeDebugSymbols" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeReferences" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if runtime assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UseRuntimeReferencePaths" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCompression" type="xs:boolean">
<xs:annotation>
<xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCleanup" type="xs:boolean">
<xs:annotation>
<xs:documentation>As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="LoadAtModuleInit" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>

View File

@@ -0,0 +1,115 @@
<?xml version="1.0" encoding="utf-8" ?>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:all>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" maxOccurs="1" name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with line breaks.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
<xs:attribute name="CreateTemporaryAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeDebugSymbols" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if .pdbs for reference assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeReferences" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls if runtime assemblies are also embedded.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="UseRuntimeReferencePaths" type="xs:boolean">
<xs:annotation>
<xs:documentation>Controls whether the runtime assemblies are embedded with their full path or only with their assembly name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCompression" type="xs:boolean">
<xs:annotation>
<xs:documentation>Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DisableCleanup" type="xs:boolean">
<xs:annotation>
<xs:documentation>As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="LoadAtModuleInit" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IgnoreSatelliteAssemblies" type="xs:boolean">
<xs:annotation>
<xs:documentation>Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ExcludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with |</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="IncludeRuntimeAssemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged32Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 32 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Unmanaged64Assemblies" type="xs:string">
<xs:annotation>
<xs:documentation>A list of unmanaged 64 bit assembly names to include, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="PreloadOrder" type="xs:string">
<xs:annotation>
<xs:documentation>The order of preloaded assemblies, delimited with |.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>

View File

@@ -0,0 +1,647 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Cyotek.Drawing.BitmapFont</name>
</assembly>
<members>
<member name="T:Cyotek.Drawing.BitmapFont.BitmapFont">
<summary>
A bitmap font.
</summary>
<seealso cref="T:System.Collections.Generic.IEnumerable{Cyotek.Drawing.BitmapFont.Character}"/>
</member>
<member name="F:Cyotek.Drawing.BitmapFont.BitmapFont.NoMaxWidth">
<summary>
When used with <see cref="M:Cyotek.Drawing.BitmapFont.BitmapFont.MeasureFont(System.String,System.Double)"/>, specifies that no wrapping should occur.
</summary>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.AlphaChannel">
<summary>
Gets or sets the alpha channel.
</summary>
<value>
The alpha channel.
</value>
<remarks>Set to 0 if the channel holds the glyph data, 1 if it holds the outline, 2 if it holds the glyph and the outline, 3 if its set to zero, and 4 if its set to one.</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.BaseHeight">
<summary>
Gets or sets the number of pixels from the absolute top of the line to the base of the characters.
</summary>
<value>
The number of pixels from the absolute top of the line to the base of the characters.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.BlueChannel">
<summary>
Gets or sets the blue channel.
</summary>
<value>
The blue channel.
</value>
<remarks>Set to 0 if the channel holds the glyph data, 1 if it holds the outline, 2 if it holds the glyph and the outline, 3 if its set to zero, and 4 if its set to one.</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Bold">
<summary>
Gets or sets a value indicating whether the font is bold.
</summary>
<value>
<c>true</c> if the font is bold, otherwise <c>false</c>.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Characters">
<summary>
Gets or sets the characters that comprise the font.
</summary>
<value>
The characters that comprise the font.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Charset">
<summary>
Gets or sets the name of the OEM charset used.
</summary>
<value>
The name of the OEM charset used (when not unicode).
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.FamilyName">
<summary>
Gets or sets the name of the true type font.
</summary>
<value>
The font family name.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.FontSize">
<summary>
Gets or sets the size of the font.
</summary>
<value>
The size of the font.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.GreenChannel">
<summary>
Gets or sets the green channel.
</summary>
<value>
The green channel.
</value>
<remarks>Set to 0 if the channel holds the glyph data, 1 if it holds the outline, 2 if it holds the glyph and the outline, 3 if its set to zero, and 4 if its set to one.</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Italic">
<summary>
Gets or sets a value indicating whether the font is italic.
</summary>
<value>
<c>true</c> if the font is italic, otherwise <c>false</c>.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Item(System.Char)">
<summary>
Indexer to get items within this collection using array index syntax.
</summary>
<param name="character">The character.</param>
<returns>
The indexed item.
</returns>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Kernings">
<summary>
Gets or sets the character kernings for the font.
</summary>
<value>
The character kernings for the font.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.LineHeight">
<summary>
Gets or sets the distance in pixels between each line of text.
</summary>
<value>
The distance in pixels between each line of text.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.OutlineSize">
<summary>
Gets or sets the outline thickness for the characters.
</summary>
<value>
The outline thickness for the characters.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Packed">
<summary>
Gets or sets a value indicating whether the monochrome characters have been packed into each of the texture channels.
</summary>
<value>
<c>true</c> if the characters are packed, otherwise <c>false</c>.
</value>
<remarks>
When packed, the <see cref="P:Cyotek.Drawing.BitmapFont.BitmapFont.AlphaChannel"/> property describes what is stored in each channel.
</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Padding">
<summary>
Gets or sets the padding for each character.
</summary>
<value>
The padding for each character.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Pages">
<summary>
Gets or sets the texture pages for the font.
</summary>
<value>
The pages.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.RedChannel">
<summary>
Gets or sets the red channel.
</summary>
<value>
The red channel.
</value>
<remarks>Set to 0 if the channel holds the glyph data, 1 if it holds the outline, 2 if it holds the glyph and the outline, 3 if its set to zero, and 4 if its set to one.</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Smoothed">
<summary>
Gets or sets a value indicating whether the font is smoothed.
</summary>
<value>
<c>true</c> if the font is smoothed, otherwise <c>false</c>.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Spacing">
<summary>
Gets or sets the spacing for each character.
</summary>
<value>
The spacing for each character.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.StretchedHeight">
<summary>
Gets or sets the font height stretch.
</summary>
<value>
The font height stretch.
</value>
<remarks>100% means no stretch.</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.SuperSampling">
<summary>
Gets or sets the level of super sampling used by the font.
</summary>
<value>
The super sampling level of the font.
</value>
<remarks>A value of 1 indicates no super sampling is in use.</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.TextureSize">
<summary>
Gets or sets the size of the texture images used by the font.
</summary>
<value>
The size of the texture.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.BitmapFont.Unicode">
<summary>
Gets or sets a value indicating whether the font is unicode.
</summary>
<value>
<c>true</c> if the font is unicode, otherwise <c>false</c>.
</value>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.GetKerning(System.Char,System.Char)">
<summary>
Gets the kerning for the specified character combination.
</summary>
<param name="previous">The previous character.</param>
<param name="current">The current character.</param>
<returns>
The spacing between the specified characters.
</returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.Load(System.IO.Stream)">
<summary>
Load font information from the specified <see cref="T:System.IO.Stream"/>.
</summary>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<exception cref="T:System.ArgumentException">Thrown when one or more arguments have unsupported or
illegal values.</exception>
<exception cref="T:System.IO.InvalidDataException">Thrown when an Invalid Data error condition occurs.</exception>
<param name="stream">The stream to load.</param>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.Load(System.String)">
<summary>
Load font information from the specified file.
</summary>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<exception cref="T:System.IO.FileNotFoundException">Thrown when the requested file is not present.</exception>
<param name="fileName">The file name to load.</param>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.LoadText(System.String)">
<summary>
Loads font information from the specified string.
</summary>
<param name="text">String containing the font to load.</param>
<remarks>The source data must be in BMFont text format.</remarks>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.LoadText(System.IO.Stream)">
<summary>
Loads font information from the specified stream.
</summary>
<remarks>
The source data must be in BMFont text format.
</remarks>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<param name="stream">The stream containing the font to load.</param>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.LoadText(System.IO.TextReader)">
<summary>
Loads font information from the specified <see cref="T:System.IO.TextReader"/>.
</summary>
<remarks>
The source data must be in BMFont text format.
</remarks>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<param name="reader">The <strong>TextReader</strong> used to feed the data into the font.</param>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.LoadXml(System.String)">
<summary>
Loads font information from the specified string.
</summary>
<param name="xml">String containing the font to load.</param>
<remarks>The source data must be in BMFont XML format.</remarks>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.LoadXml(System.IO.TextReader)">
<summary>
Loads font information from the specified <see cref="T:System.IO.TextReader"/>.
</summary>
<remarks>
The source data must be in BMFont XML format.
</remarks>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<param name="reader">The <strong>TextReader</strong> used to feed the data into the font.</param>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.LoadXml(System.IO.Stream)">
<summary>
Loads font information from the specified stream.
</summary>
<remarks>
The source data must be in BMFont XML format.
</remarks>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<param name="stream">The stream containing the font to load.</param>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.MeasureFont(System.String)">
<summary>
Provides the size, in pixels, of the specified text when drawn with this font.
</summary>
<param name="text">The text to measure.</param>
<returns>
The <see cref="T:System.Drawing.Size"/>, in pixels, of <paramref name="text"/> drawn with this font.
</returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.MeasureFont(System.String,System.Double)">
<summary>
Provides the size, in pixels, of the specified text when drawn with this font, automatically wrapping to keep within the specified with.
</summary>
<param name="text">The text to measure.</param>
<param name="maxWidth">The maximum width.</param>
<returns>
The <see cref="T:System.Drawing.Size"/>, in pixels, of <paramref name="text"/> drawn with this font.
</returns>
<remarks>The MeasureText method uses the <paramref name="maxWidth"/> parameter to automatically wrap when determining text size.</remarks>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through
the collection.
</returns>
<seealso cref="M:System.Collections.Generic.IEnumerable{Cyotek.Drawing.BitmapFont.Character}.GetEnumerator()"/>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFont.System#Collections#IEnumerable#GetEnumerator">
<summary>
Gets the enumerator.
</summary>
<returns>
The enumerator.
</returns>
</member>
<member name="T:Cyotek.Drawing.BitmapFont.BitmapFontLoader">
<summary>
Parsing class for bitmap fonts generated by AngelCode BMFont
</summary>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.LoadFontFromFile(System.String)">
<summary>
Loads a bitmap font from a file, attempting to auto detect the file type
</summary>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<exception cref="T:System.IO.FileNotFoundException">Thrown when the requested file is not present.</exception>
<exception cref="T:System.IO.InvalidDataException">Thrown when an Invalid Data error condition occurs.</exception>
<param name="fileName">Name of the file to load.</param>
<returns>
A <see cref="T:Cyotek.Drawing.BitmapFont.BitmapFont"/> containing the loaded data.
</returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.LoadFontFromTextFile(System.String)">
<summary>
Loads a bitmap font from a file containing font data in text format.
</summary>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<exception cref="T:System.IO.FileNotFoundException">Thrown when the requested file is not present.</exception>
<param name="fileName">Name of the file to load.</param>
<returns>
A <see cref="T:Cyotek.Drawing.BitmapFont.BitmapFont"/> containing the loaded data.
</returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.LoadFontFromXmlFile(System.String)">
<summary>
Loads a bitmap font from a file containing font data in XML format.
</summary>
<exception cref="T:System.ArgumentNullException">Thrown when one or more required arguments are null.</exception>
<exception cref="T:System.IO.FileNotFoundException">Thrown when the requested file is not present.</exception>
<param name="fileName">Name of the file to load.</param>
<returns>
A <see cref="T:Cyotek.Drawing.BitmapFont.BitmapFont"/> containing the loaded data.
</returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.GetNamedBool(System.String[],System.String,System.Boolean)">
<summary>
Returns a boolean from an array of name/value pairs.
</summary>
<param name="parts">The array of parts.</param>
<param name="name">The name of the value to return.</param>
<param name="defaultValue">Default value(if the key doesnt exist or can't be parsed)</param>
<returns></returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.GetNamedInt(System.String[],System.String,System.Int32)">
<summary>
Returns an integer from an array of name/value pairs.
</summary>
<param name="parts">The array of parts.</param>
<param name="name">The name of the value to return.</param>
<param name="defaultValue">Default value(if the key doesnt exist or can't be parsed)</param>
<returns></returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.GetNamedString(System.String[],System.String)">
<summary>
Returns a string from an array of name/value pairs.
</summary>
<param name="parts">The array of parts.</param>
<param name="name">The name of the value to return.</param>
<returns></returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.ParsePadding(System.String)">
<summary>
Creates a Padding object from a string representation
</summary>
<param name="s">The string.</param>
<returns></returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.ParsePoint(System.String)">
<summary>
Creates a Point object from a string representation
</summary>
<param name="s">The string.</param>
<returns></returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.QualifyResourcePaths(Cyotek.Drawing.BitmapFont.BitmapFont,System.String)">
<summary>
Updates <see cref="T:Cyotek.Drawing.BitmapFont.Page"/> data with a fully qualified path
</summary>
<param name="font">The <see cref="T:Cyotek.Drawing.BitmapFont.BitmapFont"/> to update.</param>
<param name="resourcePath">The path where texture resources are located.</param>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.Split(System.String,System.Char)">
<summary>
Splits the specified string using a given delimiter, ignoring any instances of the delimiter as part of a quoted string.
</summary>
<param name="s">The string to split.</param>
<param name="delimiter">The delimiter.</param>
<returns></returns>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.BitmapFontLoader.ToArray``1(System.Collections.Generic.ICollection{``0})">
<summary>
Converts the given collection into an array
</summary>
<typeparam name="T">Type of the items in the array</typeparam>
<param name="values">The values.</param>
<returns></returns>
</member>
<member name="T:Cyotek.Drawing.BitmapFont.Character">
<summary>
Represents the definition of a single character in a <see cref="T:Cyotek.Drawing.BitmapFont.BitmapFont"/>
</summary>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Character.Bounds">
<summary>
Gets or sets the bounds of the character image in the source texture.
</summary>
<value>
The bounds of the character image in the source texture.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Character.Channel">
<summary>
Gets or sets the texture channel where the character image is found.
</summary>
<value>
The texture channel where the character image is found.
</value>
<remarks>
1 = blue, 2 = green, 4 = red, 8 = alpha, 15 = all channels
</remarks>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Character.Char">
<summary>
Gets or sets the character.
</summary>
<value>
The character.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Character.Offset">
<summary>
Gets or sets the offset when copying the image from the texture to the screen.
</summary>
<value>
The offset when copying the image from the texture to the screen.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Character.TexturePage">
<summary>
Gets or sets the texture page where the character image is found.
</summary>
<value>
The texture page where the character image is found.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Character.XAdvance">
<summary>
Gets or sets the value used to advance the current position after drawing the character.
</summary>
<value>
How much the current position should be advanced after drawing the character.
</value>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.Character.ToString">
<summary>
Returns the fully qualified type name of this instance.
</summary>
<returns>
A <see cref="T:System.String" /> containing a fully qualified type name.
</returns>
<seealso cref="M:System.ValueType.ToString()"/>
</member>
<member name="T:Cyotek.Drawing.BitmapFont.Kerning">
<summary>
Represents the font kerning between two characters.
</summary>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.Kerning.#ctor(System.Char,System.Char,System.Int32)">
<summary>
Constructor.
</summary>
<param name="firstCharacter">The first character.</param>
<param name="secondCharacter">The second character.</param>
<param name="amount">How much the x position should be adjusted when drawing the second
character immediately following the first.</param>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Kerning.Amount">
<summary>
Gets or sets how much the x position should be adjusted when drawing the second character immediately following the first.
</summary>
<value>
How much the x position should be adjusted when drawing the second character immediately following the first.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Kerning.FirstCharacter">
<summary>
Gets or sets the first character.
</summary>
<value>
The first character.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Kerning.SecondCharacter">
<summary>
Gets or sets the second character.
</summary>
<value>
The second character.
</value>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.Kerning.ToString">
<summary>
Returns the fully qualified type name of this instance.
</summary>
<returns>
A <see cref="T:System.String" /> containing a fully qualified type name.
</returns>
<seealso cref="M:System.ValueType.ToString()"/>
</member>
<member name="T:Cyotek.Drawing.BitmapFont.Padding">
<summary>
Represents padding or margin information associated with an element.
</summary>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.Padding.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Cyotek.Drawing.BitmapFont.Padding"/> stricture using a separate padding size for each edge.
</summary>
<param name="left">The padding size, in pixels, for the left edge.</param>
<param name="top">The padding size, in pixels, for the top edge.</param>
<param name="right">The padding size, in pixels, for the right edge.</param>
<param name="bottom">The padding size, in pixels, for the bottom edge.</param>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Padding.Bottom">
<summary>
Gets or sets the padding value for the bottom edge.
</summary>
<value>
The padding, in pixels, for the bottom edge.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Padding.Left">
<summary>
Gets or sets the padding value for the left edge.
</summary>
<value>
The padding, in pixels, for the left edge.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Padding.Right">
<summary>
Gets or sets the padding value for the right edge.
</summary>
<value>
The padding, in pixels, for the right edge.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Padding.Top">
<summary>
Gets or sets the padding value for the top edge.
</summary>
<value>
The padding, in pixels, for the top edge.
</value>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.Padding.ToString">
<summary>
Returns the fully qualified type name of this instance.
</summary>
<returns>
A <see cref="T:System.String" /> containing a fully qualified type name.
</returns>
<seealso cref="M:System.ValueType.ToString()"/>
</member>
<member name="T:Cyotek.Drawing.BitmapFont.Page">
<summary>
Represents a texture page.
</summary>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.Page.#ctor(System.Int32,System.String)">
<summary>
Creates a texture page using the specified ID and source file name.
</summary>
<param name="id">The identifier.</param>
<param name="fileName">Filename of the texture image.</param>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Page.FileName">
<summary>
Gets or sets the filename of the source texture image.
</summary>
<value>
The name of the file containing the source texture image.
</value>
</member>
<member name="P:Cyotek.Drawing.BitmapFont.Page.Id">
<summary>
Gets or sets the page identifier.
</summary>
<value>
The page identifier.
</value>
</member>
<member name="M:Cyotek.Drawing.BitmapFont.Page.ToString">
<summary>
Returns the fully qualified type name of this instance.
</summary>
<returns>
A <see cref="T:System.String" /> containing a fully qualified type name.
</returns>
<seealso cref="M:System.ValueType.ToString()"/>
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

BIN
packages/Fody.6.2.0/.signature.p7s vendored Normal file

Binary file not shown.

BIN
packages/Fody.6.2.0/Fody.6.2.0.nupkg vendored Normal file

Binary file not shown.

21
packages/Fody.6.2.0/License.txt vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Simon Cropp
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

112
packages/Fody.6.2.0/build/Fody.targets vendored Normal file
View File

@@ -0,0 +1,112 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectWeaverXml Condition="$(ProjectWeaverXml) == ''">$(ProjectDir)FodyWeavers.xml</ProjectWeaverXml>
<FodyPath Condition="$(FodyPath) == ''">$(MSBuildThisFileDirectory)..\</FodyPath>
<FodyAssemblyDirectory Condition="$(MSBuildRuntimeType) == 'Core'">$(FodyPath)netstandardtask</FodyAssemblyDirectory>
<FodyAssemblyDirectory Condition="$(MSBuildRuntimeType) != 'Core'">$(FodyPath)netclassictask</FodyAssemblyDirectory>
<FodyAssembly Condition="$(FodyAssembly) == ''">$(FodyAssemblyDirectory)\Fody.dll</FodyAssembly>
<DefaultItemExcludes>$(DefaultItemExcludes);FodyWeavers.xsd</DefaultItemExcludes>
<FodyGenerateXsd Condition="$(FodyGenerateXsd) == ''">true</FodyGenerateXsd>
<MsBuildMajorVersion>15</MsBuildMajorVersion>
<MsBuildMajorVersion Condition="'$(MSBuildVersion)' != ''">$([System.Version]::Parse($(MSBuildVersion)).Major)</MsBuildMajorVersion>
</PropertyGroup>
<ItemGroup Condition="Exists($(ProjectWeaverXml))">
<UpToDateCheckInput Include="$(ProjectWeaverXml)" />
<CustomAdditionalCompileInputs Include="$(ProjectWeaverXml)" />
</ItemGroup>
<!-- Support for NCrunch -->
<ItemGroup Condition="'$(NCrunch)' == '1' and '$(TargetFramework)' == '' and '$(TargetFrameworks)' == ''">
<None Include="$(FodyAssemblyDirectory)\*.*" />
<None Include="@(WeaverFiles)" />
</ItemGroup>
<UsingTask TaskName="Fody.WeavingTask" AssemblyFile="$(FodyAssembly)" />
<UsingTask TaskName="Fody.UpdateReferenceCopyLocalTask" AssemblyFile="$(FodyAssembly)" />
<UsingTask TaskName="Fody.VerifyTask" AssemblyFile="$(FodyAssembly)" />
<Target
Name="FodyTarget"
AfterTargets="AfterCompile"
Condition="Exists(@(IntermediateAssembly)) And $(DesignTimeBuild) != true And $(DisableFody) != true"
DependsOnTargets="$(FodyDependsOnTargets)"
Inputs="@(IntermediateAssembly);$(ProjectWeaverXml)"
Outputs="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache">
<Error Condition="($(MsBuildMajorVersion) &lt; 16)"
Text="Fody is only supported on MSBuild 16 and above. Current version: $(MsBuildMajorVersion)." />
<Fody.WeavingTask
AssemblyFile="@(IntermediateAssembly)"
IntermediateDirectory="$(ProjectDir)$(IntermediateOutputPath)"
KeyOriginatorFile="$(KeyOriginatorFile)"
AssemblyOriginatorKeyFile="$(AssemblyOriginatorKeyFile)"
ProjectDirectory="$(MSBuildProjectDirectory)"
ProjectFile="$(MSBuildProjectFullPath)"
SolutionDirectory="$(SolutionDir)"
References="@(ReferencePath)"
SignAssembly="$(SignAssembly)"
ReferenceCopyLocalFiles="@(ReferenceCopyLocalPaths)"
DefineConstants="$(DefineConstants)"
DocumentationFile="@(DocFileItem->'%(FullPath)')"
WeaverFiles="@(WeaverFiles)"
WeaverConfiguration="$(WeaverConfiguration)"
PackageReferences="@(PackageReference)"
NCrunchOriginalSolutionDirectory="$(NCrunchOriginalSolutionDir)"
IntermediateCopyLocalFilesCache="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache"
GenerateXsd="$(FodyGenerateXsd)"
>
<Output
TaskParameter="ExecutedWeavers"
PropertyName="FodyExecutedWeavers" />
</Fody.WeavingTask>
<ItemGroup>
<FileWrites Include="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache" />
</ItemGroup>
</Target>
<Target
Name="FodyUpdateCopyLocalFilesTarget"
AfterTargets="FodyTarget"
>
<Fody.UpdateReferenceCopyLocalTask
ReferenceCopyLocalFiles="@(ReferenceCopyLocalPaths)"
IntermediateCopyLocalFilesCache="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache"
>
<Output
TaskParameter="UpdatedReferenceCopyLocalFiles"
ItemName="FodyUpdatedReferenceCopyLocalPaths" />
</Fody.UpdateReferenceCopyLocalTask>
<ItemGroup>
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" />
<ReferenceCopyLocalPaths Include="@(FodyUpdatedReferenceCopyLocalPaths)" />
</ItemGroup>
</Target>
<Target
Name="FodyVerifyTarget"
AfterTargets="AfterBuild"
Condition="'$(NCrunch)' != '1' And $(FodyExecutedWeavers) != '' And $(DisableFody) != true"
DependsOnTargets="$(FodyVerifyDependsOnTargets)">
<Fody.VerifyTask
ProjectDirectory="$(MSBuildProjectDirectory)"
TargetPath="$(TargetPath)"
SolutionDirectory="$(SolutionDir)"
WeaverConfiguration="$(WeaverConfiguration)"
DefineConstants="$(DefineConstants)"
NCrunchOriginalSolutionDirectory="$(NCrunchOriginalSolutionDir)"
/>
</Target>
</Project>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packages/Fody.6.5.1/.signature.p7s vendored Normal file

Binary file not shown.

BIN
packages/Fody.6.5.1/Fody.6.5.1.nupkg vendored Normal file

Binary file not shown.

21
packages/Fody.6.5.1/License.txt vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Simon Cropp
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

115
packages/Fody.6.5.1/build/Fody.targets vendored Normal file
View File

@@ -0,0 +1,115 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectWeaverXml Condition="$(ProjectWeaverXml) == ''">$(ProjectDir)FodyWeavers.xml</ProjectWeaverXml>
<FodyPath Condition="$(FodyPath) == ''">$(MSBuildThisFileDirectory)..\</FodyPath>
<FodyAssemblyDirectory Condition="$(MSBuildRuntimeType) == 'Core'">$(FodyPath)netstandardtask</FodyAssemblyDirectory>
<FodyAssemblyDirectory Condition="$(MSBuildRuntimeType) != 'Core'">$(FodyPath)netclassictask</FodyAssemblyDirectory>
<FodyAssembly Condition="$(FodyAssembly) == ''">$(FodyAssemblyDirectory)\Fody.dll</FodyAssembly>
<DefaultItemExcludes>$(DefaultItemExcludes);FodyWeavers.xsd</DefaultItemExcludes>
<FodyGenerateXsd Condition="$(FodyGenerateXsd) == ''">true</FodyGenerateXsd>
<MsBuildMajorVersion>15</MsBuildMajorVersion>
<MsBuildMajorVersion Condition="'$(MSBuildVersion)' != ''">$([System.Version]::Parse($(MSBuildVersion)).Major)</MsBuildMajorVersion>
</PropertyGroup>
<ItemGroup Condition="Exists($(ProjectWeaverXml))">
<UpToDateCheckInput Include="$(ProjectWeaverXml)" />
<CustomAdditionalCompileInputs Include="$(ProjectWeaverXml)" />
</ItemGroup>
<!-- Support for NCrunch -->
<ItemGroup Condition="'$(NCrunch)' == '1' and '$(TargetFramework)' == '' and '$(TargetFrameworks)' == ''">
<None Include="$(FodyAssemblyDirectory)\*.*" />
<None Include="@(WeaverFiles)" />
</ItemGroup>
<UsingTask TaskName="Fody.WeavingTask" AssemblyFile="$(FodyAssembly)" />
<UsingTask TaskName="Fody.UpdateReferenceCopyLocalTask" AssemblyFile="$(FodyAssembly)" />
<UsingTask TaskName="Fody.VerifyTask" AssemblyFile="$(FodyAssembly)" />
<Target
Name="FodyTarget"
AfterTargets="AfterCompile"
Condition="Exists(@(IntermediateAssembly)) And $(DesignTimeBuild) != true And $(DisableFody) != true"
DependsOnTargets="$(FodyDependsOnTargets)"
Inputs="@(IntermediateAssembly);$(ProjectWeaverXml)"
Outputs="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache">
<Error Condition="($(MsBuildMajorVersion) &lt; 16)"
Text="Fody is only supported on MSBuild 16 and above. Current version: $(MsBuildMajorVersion)." />
<Fody.WeavingTask
AssemblyFile="@(IntermediateAssembly)"
IntermediateDirectory="$(ProjectDir)$(IntermediateOutputPath)"
KeyOriginatorFile="$(KeyOriginatorFile)"
AssemblyOriginatorKeyFile="$(AssemblyOriginatorKeyFile)"
ProjectDirectory="$(MSBuildProjectDirectory)"
ProjectFile="$(MSBuildProjectFullPath)"
SolutionDirectory="$(SolutionDir)"
References="@(ReferencePath)"
SignAssembly="$(SignAssembly)"
DelaySign="$(DelaySign)"
ReferenceCopyLocalFiles="@(ReferenceCopyLocalPaths)"
DefineConstants="$(DefineConstants)"
DocumentationFile="@(DocFileItem->'%(FullPath)')"
WeaverFiles="@(WeaverFiles)"
WeaverConfiguration="$(WeaverConfiguration)"
PackageReferences="@(PackageReference)"
NCrunchOriginalSolutionDirectory="$(NCrunchOriginalSolutionDir)"
IntermediateCopyLocalFilesCache="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache"
GenerateXsd="$(FodyGenerateXsd)"
>
<Output
TaskParameter="ExecutedWeavers"
PropertyName="FodyExecutedWeavers" />
</Fody.WeavingTask>
<ItemGroup>
<FileWrites Include="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache" />
</ItemGroup>
</Target>
<Target
Name="FodyUpdateCopyLocalFilesTarget"
AfterTargets="FodyTarget"
>
<Fody.UpdateReferenceCopyLocalTask
ReferenceCopyLocalFiles="@(ReferenceCopyLocalPaths)"
IntermediateCopyLocalFilesCache="$(IntermediateOutputPath)$(MSBuildProjectFile).Fody.CopyLocal.cache"
>
<Output
TaskParameter="UpdatedReferenceCopyLocalFiles"
ItemName="FodyUpdatedReferenceCopyLocalPaths" />
</Fody.UpdateReferenceCopyLocalTask>
<ItemGroup>
<FodyRemovedReferenceCopyLocalPaths Include="@(ReferenceCopyLocalPaths)" />
<FodyRemovedReferenceCopyLocalPaths Remove="@(FodyUpdatedReferenceCopyLocalPaths)" />
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" />
<ReferenceCopyLocalPaths Include="@(FodyUpdatedReferenceCopyLocalPaths)" />
</ItemGroup>
</Target>
<Target
Name="FodyVerifyTarget"
AfterTargets="AfterBuild"
Condition="'$(NCrunch)' != '1' And $(FodyExecutedWeavers) != '' And $(DisableFody) != true"
DependsOnTargets="$(FodyVerifyDependsOnTargets)">
<Fody.VerifyTask
ProjectDirectory="$(MSBuildProjectDirectory)"
TargetPath="$(TargetPath)"
SolutionDirectory="$(SolutionDir)"
WeaverConfiguration="$(WeaverConfiguration)"
DefineConstants="$(DefineConstants)"
NCrunchOriginalSolutionDirectory="$(NCrunchOriginalSolutionDir)"
/>
</Target>
</Project>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

12
packages/HelixToolkit.1.1.0/AUTHORS vendored Normal file
View File

@@ -0,0 +1,12 @@
# This is the official list of Helix Toolkit authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS file.
# See the latter for an explanation.
# Names should be added to this file as
# Name or Organization <email address>
# The email address is not required for organizations.
# Please keep the list sorted.
# Please notify the first person on the list to be added here.
Oystein Bjorke <oystein.bjorke@gmail.com>

View File

@@ -0,0 +1,49 @@
# This is the official list of people who have contributed
# to the Helix Toolkit repository.
# The AUTHORS file lists the copyright holders; this file
# lists people.
# People submitting code should be listed in this file (by email address).
# Names should be added to this file like so:
# Name <email address>
# Please keep the list sorted.
Aleksey Shubin <alekseysshubin@gmail.com>
ando23 <andreas@herzig-net.de>
Benglin (Ben) Goh <benglin@outlook.com>
Brad Phelan <bradphelan@xtargets.com>
Carl Philipp Bickmeier <c.bickmeier@diomex.de>
ccHanibal <oliver91daum@hotmail.de>
christophano@hotmail.com
Christof Konstantinopoulos <chrkon@web.de>
Christof <chrkon@mail.de>
ck <konstantinopoulos@glm-laser.com>
cureos
dgwaldo <don.g.waldo@gmail.com>
dturvey_bhc
Don Waldo <don.g.waldo@gmail.com>
Edward Zhu <edward.zr.zhu@gmail.com>
Franz Spitaler <spitefr@gmail.com>
Gary Johnson <gary@gjtt.com>
Ian Keough <ian.keough@autodesk.com>
Jack Ukleja <jack@ukleja.com>
Jérémy Ansel <JeremyAnsel@users.noreply.github.com>
jesperll
Johan Larsson <johan_gavle1@hotmail.com>
johnsonlu <johnsonlu82@gmail.com>
lcouz <couzinetlionel@hotmail.com>
lrieger <lr@live.de>
Lunci Hua <lunci.app@gmail.com>
mertkokusen <mertkokusen@hotmail.com>
mortalV <vriadchenko@initium.ru>
omnillogix <github@omnilogix.com>
Oystein Bjorke <oystein.bjorke@gmail.com>
Peter Boyer <peter.b.boyer@gmail.com>
PillowSky <pillowsky@qq.com>
Piotr Steclik <piotr@steclik.com>
przem
Samuel Carlsson <samuel.carlsson@gmail.com>
smischke <survivorx@gmx.de>
Zonggui Zhu <zhuzonggui@outlook.com>

Binary file not shown.

22
packages/HelixToolkit.1.1.0/LICENSE vendored Normal file
View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2012 Helix Toolkit contributors
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

32
packages/HelixToolkit.1.1.0/README.md vendored Normal file
View File

@@ -0,0 +1,32 @@
Helix Toolkit
====
Helix Toolkit is a collection of 3D components for .NET. Currently it contains one component that adds functionality to the WPF 3D model (Media3D namespace), and one WPF component that creates a similar scene graph for DirectX (based on SharpDX).
[![Build status](https://ci.appveyor.com/api/projects/status/tmqafdk9p7o98gw7)](https://ci.appveyor.com/project/objorke/helix-toolkit)
Description | Value
--------------------|-----------------------
License | The MIT License (MIT)
Web page | http://helix-toolkit.org/
Documentation | http://docs.helix-toolkit.org/
Forum | http://forum.helix-toolkit.org/
Chat | https://gitter.im/helix-toolkit/helix-toolkit
Source repository | http://github.com/helix-toolkit/helix-toolkit
Latest build | http://ci.appveyor.com/project/objorke/helix-toolkit
Issue tracker | http://github.com/helix-toolkit/helix-toolkit/issues
NuGet packages | http://www.nuget.org/packages?q=HelixToolkit
MyGet feed | https://www.myget.org/F/helix-toolkit
StackOverflow | http://stackoverflow.com/questions/tagged/helix-3d-toolkit
Twitter | https://twitter.com/hashtag/Helix3DToolkit
News
====
### 2018-02-06
V1.1.0 release is available.
https://www.nuget.org/packages/HelixToolkit.Wpf/1.1.0
https://www.nuget.org/packages/HelixToolkit.Wpf.SharpDX/1.1.0

View File

@@ -0,0 +1,36 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>HelixToolkit</name>
</assembly>
<members>
<member name="T:HelixToolkit.StringExtensions">
<summary>
Extension methods for strings.
</summary>
</member>
<member name="F:HelixToolkit.StringExtensions.oneOrMoreWhitespaces">
<summary>
A regular expression containing "a one or more whitespaces" pattern.
</summary>
</member>
<member name="M:HelixToolkit.StringExtensions.SplitOnWhitespace(System.String)">
<summary>
Splits the string on whitespace.
</summary>
<param name="input">The input string.</param>
<returns>Array of strings.</returns>
</member>
<member name="M:HelixToolkit.StringExtensions.EnumerateToString(System.Collections.IEnumerable,System.String,System.String)">
<summary>
Creates a string from the items in an enumerable.
</summary>
<param name="items">The items.</param>
<param name="prefix">The prefix.</param>
<param name="separator">The separator.</param>
<returns>
A string.
</returns>
</member>
</members>
</doc>

12
packages/HelixToolkit.Wpf.1.1.0/AUTHORS vendored Normal file
View File

@@ -0,0 +1,12 @@
# This is the official list of Helix Toolkit authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS file.
# See the latter for an explanation.
# Names should be added to this file as
# Name or Organization <email address>
# The email address is not required for organizations.
# Please keep the list sorted.
# Please notify the first person on the list to be added here.
Oystein Bjorke <oystein.bjorke@gmail.com>

View File

@@ -0,0 +1,49 @@
# This is the official list of people who have contributed
# to the Helix Toolkit repository.
# The AUTHORS file lists the copyright holders; this file
# lists people.
# People submitting code should be listed in this file (by email address).
# Names should be added to this file like so:
# Name <email address>
# Please keep the list sorted.
Aleksey Shubin <alekseysshubin@gmail.com>
ando23 <andreas@herzig-net.de>
Benglin (Ben) Goh <benglin@outlook.com>
Brad Phelan <bradphelan@xtargets.com>
Carl Philipp Bickmeier <c.bickmeier@diomex.de>
ccHanibal <oliver91daum@hotmail.de>
christophano@hotmail.com
Christof Konstantinopoulos <chrkon@web.de>
Christof <chrkon@mail.de>
ck <konstantinopoulos@glm-laser.com>
cureos
dgwaldo <don.g.waldo@gmail.com>
dturvey_bhc
Don Waldo <don.g.waldo@gmail.com>
Edward Zhu <edward.zr.zhu@gmail.com>
Franz Spitaler <spitefr@gmail.com>
Gary Johnson <gary@gjtt.com>
Ian Keough <ian.keough@autodesk.com>
Jack Ukleja <jack@ukleja.com>
Jérémy Ansel <JeremyAnsel@users.noreply.github.com>
jesperll
Johan Larsson <johan_gavle1@hotmail.com>
johnsonlu <johnsonlu82@gmail.com>
lcouz <couzinetlionel@hotmail.com>
lrieger <lr@live.de>
Lunci Hua <lunci.app@gmail.com>
mertkokusen <mertkokusen@hotmail.com>
mortalV <vriadchenko@initium.ru>
omnillogix <github@omnilogix.com>
Oystein Bjorke <oystein.bjorke@gmail.com>
Peter Boyer <peter.b.boyer@gmail.com>
PillowSky <pillowsky@qq.com>
Piotr Steclik <piotr@steclik.com>
przem
Samuel Carlsson <samuel.carlsson@gmail.com>
smischke <survivorx@gmx.de>
Zonggui Zhu <zhuzonggui@outlook.com>

Binary file not shown.

22
packages/HelixToolkit.Wpf.1.1.0/LICENSE vendored Normal file
View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2012 Helix Toolkit contributors
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,32 @@
Helix Toolkit
====
Helix Toolkit is a collection of 3D components for .NET. Currently it contains one component that adds functionality to the WPF 3D model (Media3D namespace), and one WPF component that creates a similar scene graph for DirectX (based on SharpDX).
[![Build status](https://ci.appveyor.com/api/projects/status/tmqafdk9p7o98gw7)](https://ci.appveyor.com/project/objorke/helix-toolkit)
Description | Value
--------------------|-----------------------
License | The MIT License (MIT)
Web page | http://helix-toolkit.org/
Documentation | http://docs.helix-toolkit.org/
Forum | http://forum.helix-toolkit.org/
Chat | https://gitter.im/helix-toolkit/helix-toolkit
Source repository | http://github.com/helix-toolkit/helix-toolkit
Latest build | http://ci.appveyor.com/project/objorke/helix-toolkit
Issue tracker | http://github.com/helix-toolkit/helix-toolkit/issues
NuGet packages | http://www.nuget.org/packages?q=HelixToolkit
MyGet feed | https://www.myget.org/F/helix-toolkit
StackOverflow | http://stackoverflow.com/questions/tagged/helix-3d-toolkit
Twitter | https://twitter.com/hashtag/Helix3DToolkit
News
====
### 2018-02-06
V1.1.0 release is available.
https://www.nuget.org/packages/HelixToolkit.Wpf/1.1.0
https://www.nuget.org/packages/HelixToolkit.Wpf.SharpDX/1.1.0

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -0,0 +1,12 @@
# This is the official list of Helix Toolkit authors for copyright purposes.
# This file is distinct from the CONTRIBUTORS file.
# See the latter for an explanation.
# Names should be added to this file as
# Name or Organization <email address>
# The email address is not required for organizations.
# Please keep the list sorted.
# Please notify the first person on the list to be added here.
Oystein Bjorke <oystein.bjorke@gmail.com>

View File

@@ -0,0 +1,49 @@
# This is the official list of people who have contributed
# to the Helix Toolkit repository.
# The AUTHORS file lists the copyright holders; this file
# lists people.
# People submitting code should be listed in this file (by email address).
# Names should be added to this file like so:
# Name <email address>
# Please keep the list sorted.
Aleksey Shubin <alekseysshubin@gmail.com>
ando23 <andreas@herzig-net.de>
Benglin (Ben) Goh <benglin@outlook.com>
Brad Phelan <bradphelan@xtargets.com>
Carl Philipp Bickmeier <c.bickmeier@diomex.de>
ccHanibal <oliver91daum@hotmail.de>
christophano@hotmail.com
Christof Konstantinopoulos <chrkon@web.de>
Christof <chrkon@mail.de>
ck <konstantinopoulos@glm-laser.com>
cureos
dgwaldo <don.g.waldo@gmail.com>
dturvey_bhc
Don Waldo <don.g.waldo@gmail.com>
Edward Zhu <edward.zr.zhu@gmail.com>
Franz Spitaler <spitefr@gmail.com>
Gary Johnson <gary@gjtt.com>
Ian Keough <ian.keough@autodesk.com>
Jack Ukleja <jack@ukleja.com>
Jérémy Ansel <JeremyAnsel@users.noreply.github.com>
jesperll
Johan Larsson <johan_gavle1@hotmail.com>
johnsonlu <johnsonlu82@gmail.com>
lcouz <couzinetlionel@hotmail.com>
lrieger <lr@live.de>
Lunci Hua <lunci.app@gmail.com>
mertkokusen <mertkokusen@hotmail.com>
mortalV <vriadchenko@initium.ru>
omnillogix <github@omnilogix.com>
Oystein Bjorke <oystein.bjorke@gmail.com>
Peter Boyer <peter.b.boyer@gmail.com>
PillowSky <pillowsky@qq.com>
Piotr Steclik <piotr@steclik.com>
przem
Samuel Carlsson <samuel.carlsson@gmail.com>
smischke <survivorx@gmx.de>
Zonggui Zhu <zhuzonggui@outlook.com>

View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2012 Helix Toolkit contributors
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,32 @@
Helix Toolkit
====
Helix Toolkit is a collection of 3D components for .NET. Currently it contains one component that adds functionality to the WPF 3D model (Media3D namespace), and one WPF component that creates a similar scene graph for DirectX (based on SharpDX).
[![Build status](https://ci.appveyor.com/api/projects/status/tmqafdk9p7o98gw7)](https://ci.appveyor.com/project/objorke/helix-toolkit)
Description | Value
--------------------|-----------------------
License | The MIT License (MIT)
Web page | http://helix-toolkit.org/
Documentation | http://docs.helix-toolkit.org/
Forum | http://forum.helix-toolkit.org/
Chat | https://gitter.im/helix-toolkit/helix-toolkit
Source repository | http://github.com/helix-toolkit/helix-toolkit
Latest build | http://ci.appveyor.com/project/objorke/helix-toolkit
Issue tracker | http://github.com/helix-toolkit/helix-toolkit/issues
NuGet packages | http://www.nuget.org/packages?q=HelixToolkit
MyGet feed | https://www.myget.org/F/helix-toolkit
StackOverflow | http://stackoverflow.com/questions/tagged/helix-3d-toolkit
Twitter | https://twitter.com/hashtag/Helix3DToolkit
News
====
### 2018-02-06
V1.1.0 release is available.
https://www.nuget.org/packages/HelixToolkit.Wpf/1.1.0
https://www.nuget.org/packages/HelixToolkit.Wpf.SharpDX/1.1.0

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

4
packages/Ionic.Zip.1.9.1.8/nuget.bat vendored Normal file
View File

@@ -0,0 +1,4 @@
@echo Uploading to nuget
erase *.nupkg /Q /F
for /f "delims=|" %%f in ('dir /b *.nuspec') do ..\.nuget\NuGet.exe pack %%f -build -properties Configuration=Release
..\.nuget\Nuget.exe push *.nupkg

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More