Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jcFiskum authored Oct 21, 2022
1 parent 18adc6a commit 7fbc43b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
7 changes: 7 additions & 0 deletions ILMergeConfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"General": {
"InputAssemblies": [
"LinqToStdf.dll"
]
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This converter does not support WATS Client 5.1 or older, because that version u
* [About submitting data to WATS](https://virinco.zendesk.com/hc/en-us/articles/207424613)
* [About creating custom converters](https://virinco.zendesk.com/hc/en-us/articles/207424593)

This Converter uses [LinqToStdf](https://github.com/marklio/LinqToStdf). In order to compile, download both projects (LinqToStdf and Converter) from their respective pages, compile LinqToStdf in Visual Studio and add a reference to the compiled project in the Converter project. The STDFConverter.sln file also contains the LinqToStdf project, so you can also update the path to the new folder location there.
This Converter uses [LinqToStdf](https://github.com/marklio/LinqToStdf). In order to compile, download both projects (LinqToStdf and Converter) from their respective pages, compile LinqToStdf in Visual Studio and add a reference to the compiled project in the Converter project.

## Download

Expand Down Expand Up @@ -82,4 +82,4 @@ Contact Virinco support, and include the wats.log file: [Where to find the wats

## License

This project is licensed under the [LGPLv3](COPYING.LESSER) which is an extention of the [GPLv3](COPYING).
This project is licensed under the [LGPLv3](COPYING.LESSER) which is an extention of the [GPLv3](COPYING).
29 changes: 22 additions & 7 deletions STDFConverter.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="packages\ILMerge.3.0.41\build\ILMerge.props" Condition="Exists('packages\ILMerge.3.0.41\build\ILMerge.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand All @@ -12,6 +13,8 @@
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -29,13 +32,17 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ILMerge>true</ILMerge>
</PropertyGroup>
<ItemGroup>
<Reference Include="LinqToStdf, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\source\repos\LinqToStdf\Main\LinqToStdf\bin\Debug\LinqToStdf.dll</HintPath>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
Expand All @@ -49,6 +56,7 @@
</Reference>
<Reference Include="Virinco.WATS.Converters.Standard, Version=6.0.0.260, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\WATS.Client.6.0.260\lib\net462\Virinco.WATS.Converters.Standard.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Virinco.WATS.Interface.MES, Version=6.0.0.260, Culture=neutral, PublicKeyToken=25abfe255fd31fdf, processorArchitecture=MSIL">
<HintPath>packages\WATS.Client.6.0.260\lib\net462\Virinco.WATS.Interface.MES.dll</HintPath>
Expand All @@ -68,15 +76,22 @@
<Compile Include="STDFConverter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\WATS Client\Interface.TDM\Interface.TDM.csproj">
<Project>{cabb96ee-55cc-4a12-b301-25efe68525c4}</Project>
<Name>Interface.TDM</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="ILMergeConfig.json" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('packages\ILMerge.3.0.41\build\ILMerge.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\ILMerge.3.0.41\build\ILMerge.props'))" />
</Target>
<ItemGroup>
<PackageReference Include="ILMerge" Version="3.0.29" />
<PackageReference Include="ILMerge.MSBuild.Task">
<Version>1.0.7</Version>
</PackageReference>
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="ILMerge" version="3.0.41" targetFramework="net462" />
<package id="WATS.Client" version="6.0.260" targetFramework="net462" />
</packages>

0 comments on commit 7fbc43b

Please sign in to comment.