Updating Nuget.

Updating Nuget.
This commit is contained in:
Jordan Wages 2018-06-12 21:52:05 -05:00
commit dcef431e12
54 changed files with 246 additions and 168 deletions

View file

@ -1,36 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("csmic")]
[assembly: AssemblyDescription("A .NET component for easy access to parsing simple math and scripting.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Jordan Wages")]
[assembly: AssemblyProduct("csmic")]
[assembly: AssemblyCopyright("Copyright © 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("e36b7d85-f0e6-4f24-ba03-ac53124dd97e")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.5.0")]
[assembly: AssemblyFileVersion("1.1.5.0")]

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,136 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7BBA4BA2-E885-4D89-8710-F1A609616B7D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>csmic</RootNamespace>
<AssemblyName>csmic</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>csmic_open.snk</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkProfile />
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\csmic.XML</DocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\csmic.XML</DocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>false</RunCodeAnalysis>
<TargetFramework>net40</TargetFramework>
<Version>1.1.4</Version>
<Authors>Jordan Wages</Authors>
<Company>None</Company>
<Product>CS-MIC</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright © 2012</Copyright>
<PackageLicenseUrl>https://github.com/wagesj45/cs-mic/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>http://cs-mic.com/</PackageProjectUrl>
<RepositoryUrl>https://github.com/wagesj45/cs-mic</RepositoryUrl>
<Description>A .NET component for easy access to parsing simple math and scripting.</Description>
<PackageTags>math parsing scripting</PackageTags>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Include="CodedFunctionFactory.cs" />
<Compile Include="CodedFunctions\CF_Abs.cs" />
<Compile Include="CodedFunctions\CF_Exp.cs" />
<Compile Include="CodedFunctions\CF_Log.cs" />
<Compile Include="CodedFunctions\CF_Precision.cs" />
<Compile Include="CodedFunctions\CF_Sqrt.cs" />
<Compile Include="CodedFunctions\CF_Cos.cs" />
<Compile Include="CodedFunctions\CF_Round.cs" />
<Compile Include="CodedFunctions\CF_Sin.cs" />
<Compile Include="CodedFunctions\CF_Tan.cs" />
<Compile Include="Computable\Computable.cs" />
<Compile Include="Extensions\CSMICExtension.cs" />
<Compile Include="GenericCodedFunction.cs" />
<Compile Include="ICodedFunction.cs" />
<Compile Include="InputInterpreter.cs" />
<Compile Include="InterpretedFunction.cs" />
<Compile Include="InterpretedFunctionArgument.cs" />
<Compile Include="MacroBuilder.cs" />
<Compile Include="MacroOperation.cs" />
<Compile Include="InterpreterParser\Parser.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="InterpreterParser\Scanner.cs" />
<Compile Include="ScriptParser\Parser.cs" />
<Compile Include="ScriptParser\Scanner.cs" />
<Compile Include="Variable.cs" />
</ItemGroup>
<ItemGroup>
<None Include="csmic_open.snk" />
<None Include="InterpreterParser\Parser.frame" />
<None Include="InterpreterParser\Scanner.frame" />
<None Include="ScriptParser\Parser.frame" />
<None Include="ScriptParser\Scanner.frame" />
<None Include="ScriptParser\Scripting.atg" />
<None Include="InterpreterParser\CSMIC.atg" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="&quot;$(ProjectDir)\coco.exe&quot; -namespace csmic.Interpreter -frames . &quot;$(ProjectDir)\InterpreterParser\CSMIC.atg&quot;&#xD;&#xA;&quot;$(ProjectDir)\coco.exe&quot; -namespace csmic.Scripting -frames . &quot;$(ProjectDir)\ScriptParser\Scripting.atg&quot;" />
</Target>
<Target Name="AfterBuild">
</Target>
-->
<PropertyGroup>
<PreBuildEvent>"$(ProjectDir)\coco.exe" -namespace csmic.Interpreter -frames . "$(ProjectDir)\InterpreterParser\CSMIC.atg"
"$(ProjectDir)\coco.exe" -namespace csmic.Scripting -frames . "$(ProjectDir)\ScriptParser\Scripting.atg"</PreBuildEvent>
</PropertyGroup>
</Project>
</Project>

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>csmic</id>
<version>1.1.4</version>
<authors>Jordan Wages</authors>
<owners>Jordan Wages</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/wagesj45/cs-mic/blob/master/LICENSE</licenseUrl>
<projectUrl>http://cs-mic.com/</projectUrl>
<description>A .NET component for easy access to parsing simple math and scripting.</description>
<copyright>Copyright © 2012</copyright>
<tags>math parsing scripting</tags>
<repository url="https://github.com/wagesj45/cs-mic" />
<dependencies>
<group targetFramework=".NETFramework4.0" />
</dependencies>
</metadata>
<files>
<file src="C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\bin\Debug\net40\csmic.dll" target="lib\net40\csmic.dll" />
</files>
</package>

View file

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("None")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © 2012")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("A .NET component for easy access to parsing simple math and scripting.")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.1.4.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.1.4")]
[assembly: System.Reflection.AssemblyProductAttribute("CS-MIC")]
[assembly: System.Reflection.AssemblyTitleAttribute("csmic")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.1.4.0")]
// Generated by the MSBuild WriteCodeFragment class.

View file

@ -0,0 +1 @@
0ea9b979dda5a9e32efff5e2f55623df53fb1778

View file

@ -0,0 +1 @@
a5e8f94baf8d8768320eb6d870d6fe889b53b39f

View file

@ -0,0 +1,8 @@
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Debug\net40\csmic.csprojAssemblyReference.cache
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Debug\net40\csmic.csproj.CoreCompileInputs.cache
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Debug\net40\csmic.AssemblyInfoInputs.cache
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Debug\net40\csmic.AssemblyInfo.cs
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\bin\Debug\net40\csmic.dll
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\bin\Debug\net40\csmic.pdb
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Debug\net40\csmic.dll
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Debug\net40\csmic.pdb

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("csmic")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("csmic")]
[assembly: System.Reflection.AssemblyTitleAttribute("csmic")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View file

@ -0,0 +1 @@
c9f038d5c3969ac143c7288bb74ddd78a58b070a

View file

@ -0,0 +1 @@
f925bdaaece993086be5b4f2ac93432cb385fcbe

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>csmic</id>
<version>1.1.4</version>
<authors>Jordan Wages</authors>
<owners>Jordan Wages</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/wagesj45/cs-mic/blob/master/LICENSE</licenseUrl>
<projectUrl>http://cs-mic.com/</projectUrl>
<description>A .NET component for easy access to parsing simple math and scripting.</description>
<copyright>Copyright © 2012</copyright>
<tags>math parsing scripting</tags>
<repository url="https://github.com/wagesj45/cs-mic" />
<dependencies>
<group targetFramework=".NETFramework4.0" />
</dependencies>
</metadata>
<files>
<file src="C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\bin\Release\net40\csmic.dll" target="lib\net40\csmic.dll" />
</files>
</package>

View file

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("None")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © 2012")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("A .NET component for easy access to parsing simple math and scripting.")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.1.4.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.1.4")]
[assembly: System.Reflection.AssemblyProductAttribute("CS-MIC")]
[assembly: System.Reflection.AssemblyTitleAttribute("csmic")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.1.4.0")]
// Generated by the MSBuild WriteCodeFragment class.

View file

@ -0,0 +1 @@
b9c3515eed0a5638d6a5b8c4e0d7bb5f37b7c757

View file

@ -0,0 +1 @@
a5e8f94baf8d8768320eb6d870d6fe889b53b39f

View file

@ -0,0 +1,7 @@
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\bin\Release\net40\csmic.dll
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\bin\Release\net40\csmic.pdb
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Release\net40\csmic.csproj.CoreCompileInputs.cache
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Release\net40\csmic.AssemblyInfoInputs.cache
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Release\net40\csmic.AssemblyInfo.cs
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Release\net40\csmic.dll
C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\Release\net40\csmic.pdb

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,5 @@
{
"version": 1,
"dgSpecHash": "no1TIMbiu1fAXDTJGQ+TSDr5uOTLrmXNFCHSDYCotG8EIO5hC54bP1rMUbPWN+A9Fd4WjYcTSheJw73W11vQ6Q==",
"success": true
}

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\wages\Documents\GitHub\cs-mic\CS-MIC\csmic\csmic\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\wages\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.7.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View file

@ -0,0 +1,52 @@
{
"version": 3,
"targets": {
".NETFramework,Version=v4.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
".NETFramework,Version=v4.0": []
},
"packageFolders": {
"C:\\Users\\wages\\.nuget\\packages\\": {},
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
"version": "1.1.4",
"restore": {
"projectUniqueName": "C:\\Users\\wages\\Documents\\GitHub\\cs-mic\\CS-MIC\\csmic\\csmic\\csmic.csproj",
"projectName": "csmic",
"projectPath": "C:\\Users\\wages\\Documents\\GitHub\\cs-mic\\CS-MIC\\csmic\\csmic\\csmic.csproj",
"packagesPath": "C:\\Users\\wages\\.nuget\\packages\\",
"outputPath": "C:\\Users\\wages\\Documents\\GitHub\\cs-mic\\CS-MIC\\csmic\\csmic\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\wages\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net40"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net40": {
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net40": {}
}
}
}