Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 18 additions & 70 deletions src/GraphVizWrapper.Tests/GraphVizWrapper.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,79 +1,27 @@
<?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>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B561F813-067D-4602-8786-CD680154879A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>GraphVizWrapper.Tests</RootNamespace>
<AssemblyTitle>GraphVizWrapper.Tests</AssemblyTitle>
<TargetFramework>netcoreapp2.0</TargetFramework>
<AssemblyName>GraphVizWrapper.Tests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PackageId>GraphVizWrapper.Tests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace>GraphVizWrapper.Tests</RootNamespace>
</PropertyGroup>

<ItemGroup>
<Reference Include="Moq">
<HintPath>..\packages\Moq.4.0.10827\lib\NET40\Moq.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>..\packages\NUnit.2.5.10.11092\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="nunit.mocks">
<HintPath>..\packages\NUnit.2.5.10.11092\lib\nunit.mocks.dll</HintPath>
</Reference>
<Reference Include="pnunit.framework">
<HintPath>..\packages\NUnit.2.5.10.11092\lib\pnunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<PackageReference Include="Moq" Version="4.7.142" />
<PackageReference Include="NUnit" Version="3.8.1" />
</ItemGroup>

<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Tests.cs" />
<ProjectReference Include="..\GraphVizWrapper\GraphVizWrapper.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphVizWrapper\GraphVizWrapper.csproj">
<Project>{CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}</Project>
<Name>GraphVizWrapper</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</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>
<Target Name="AfterBuild">
</Target>
-->
<Folder Include="Properties\" />
</ItemGroup>
</Project>
88 changes: 26 additions & 62 deletions src/GraphVizWrapper/GraphVizWrapper.csproj
Original file line number Diff line number Diff line change
@@ -1,70 +1,34 @@
<?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>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>GraphVizWrapper</RootNamespace>
<Copyright>JamieDixon</Copyright>
<AssemblyTitle>GraphVizWrapper</AssemblyTitle>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>GraphVizWrapper</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<PackageId>GraphVizWrapper</PackageId>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<PackageProjectUrl>https://github.com/JamieDixon/GraphViz-C-Sharp-Wrapper</PackageProjectUrl>
<PackageIconUrl>https://cloud.githubusercontent.com/assets/1519443/8213182/0afa9bb4-1518-11e5-9d8b-8a3a9a0cecfa.png</PackageIconUrl>
<RepositoryUrl>https://github.com/JamieDixon/GraphViz-C-Sharp-Wrapper</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
<PackageTags>GraphViz</PackageTags>
<PackageReleaseNotes>Ported to netstandard 2.0</PackageReleaseNotes>
<Authors>Jamie Dixon</Authors>
<Company>Jamie Dixon</Company>
<Description>This is a C# wrapper for the GraphViz graph generator.
Pass in a dot string and an output type and voila, your graph is generated.
The output file is returned to you as a byte array to do as you please.
This library acts as a wrapper for the GraphViz command line tools.

Once installed, a new element will be added to your web.config or app.config with the key "graphVizLocation". Use this to specify to folder containing your installation of graphviz.</Description>
</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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>

<ItemGroup>
<Compile Include="ProcessStartInfoWrapper.cs" />
<Compile Include="Enums.cs" />
<Compile Include="Commands\IRegisterLayoutPluginCommand.cs" />
<Compile Include="Commands\ICommand.cs" />
<Compile Include="IProcessStartInfoWrapper.cs" />
<Compile Include="Queries\IQuery.cs" />
<Compile Include="Queries\GetStartProcessQuery.cs" />
<Compile Include="Queries\GetProcessStartInfoQuery.cs" />
<Compile Include="GraphGeneration.cs" />
<Compile Include="IGraphGeneration.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Commands\RegisterLayoutPluginCommand.cs" />
<Compile Include="Queries\IGetProcessStartInfoQuery.cs" />
<Compile Include="Queries\IGetStartProcessQuery.cs" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.0" />
</ItemGroup>

<ItemGroup>
<None Include="App.config" />
<Folder Include="Properties\" />
</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>
<Target Name="AfterBuild">
</Target>
-->
</Project>

This file was deleted.

This file was deleted.

Binary file not shown.
15 changes: 0 additions & 15 deletions src/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nuspec

This file was deleted.

Binary file not shown.
Loading