Skip to content

Commit

Permalink
last update
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseTorresParis committed Dec 3, 2018
1 parent 700544c commit 666cf81
Show file tree
Hide file tree
Showing 328 changed files with 36,803 additions and 323,508 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/bin/Debug/netcoreapp2.1/IngeniBridge.GenerateFullInventory.dll",
"args": [],
"cwd": "${workspaceFolder}/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
"console": "internalConsole",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
,]
}
15 changes: 15 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/IngeniBridge.Programs/IngeniBridge.GenerateFullInventory/IngeniBridge.GenerateFullInventory.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
Binary file not shown.
Binary file modified IngeniBridge.Programs/.vs/IngeniBridge.Programs/v15/.suo
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net45</TargetFramework>
<TargetFramework>netcoreapp2.1</TargetFramework>
<Title>IngeniBridge.GenerateFullInventory</Title>
<Version>1.0.0</Version>
<Authors>JTO Tec</Authors>
Expand All @@ -14,15 +14,17 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.3.0" />
<PackageReference Include="IngeniBridge.BuildUtils" Version="1.0.6" />
<PackageReference Include="IngeniBridge.Core" Version="1.0.37" />
<PackageReference Include="IngeniBridge.StorageAccessor.InMemory" Version="1.0.8" />
<PackageReference Include="JT.TechCases.Threading" Version="1.0.12" />
<PackageReference Include="log4net" Version="2.0.8" /> <PackageReference Include="System.Net.Http" Version="4.3.3" />
<PackageReference Include="EPPlus" Version="4.5.2.1" />
<PackageReference Include="IngeniBridge.BuildUtils" Version="1.0.7" />
<PackageReference Include="IngeniBridge.Core" Version="1.0.38" />
<PackageReference Include="IngeniBridge.StorageAccessor.InMemory" Version="1.0.9" />
<PackageReference Include="JT.TechCases.Threading" Version="1.0.17" />
<PackageReference Include="log4net" Version="2.0.8" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'net45' ">
<DefineConstants>NET45;NETFULL</DefineConstants>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
rem dont forget to rename ibdb file in the command line
bin\Release\IngeniBridge.GenerateFullInventory --StorageAccessorAssembly="IngeniBridge.StorageAccessor.InMemory.dll" --IBDatabase=..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_09_13.ibdb --InventoryFile=InventoryFileIB.xlsx
cd bin\Release\netcoreapp2.1
dotnet IngeniBridge.GenerateFullInventory.dll --StorageAccessorAssembly="IngeniBridge.StorageAccessor.InMemory.dll" --IBDatabase=..\..\IngeniBridge.Sample.MyCompany\IngeniBridge.Samples.MyCompany\MasterAssetMyCompany_2018_09_13.ibdb --InventoryFile=InventoryFileIB.xlsx
pause
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"profiles": {
"IngeniBridge.GenerateFullInventory": {
"commandName": "Project",
"commandLineArgs": "--StorageAccessorAssembly=\"IngeniBridge.StorageAccessor.InMemory.dll\" --IBDatabase=..\\..\\IngeniBridge.Sample.MyCompany\\IngeniBridge.Samples.MyCompany\\MasterAssetMyCompany_2018_09_13.ibdb --InventoryFile=InventoryFileIB.xlsx"
}
}
}
Binary file not shown.
Loading

0 comments on commit 666cf81

Please sign in to comment.