Skip to content

Commit

Permalink
Merge pull request #11 from mouliSF4071/master
Browse files Browse the repository at this point in the history
891562: move internal to public Repo
  • Loading branch information
shyamg1991 authored Jul 9, 2024
2 parents aed4c51 + ed5de40 commit e6cfe64
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 13 deletions.
16 changes: 12 additions & 4 deletions DiagramBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,23 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<Target Name="CopyRoslynFiles" AfterTargets="AfterBuild" Condition="!$(Disable_CopyWebApplication) And '$(OutDir)' != '$(OutputPath)'">
<ItemGroup>
<RoslynFiles Include="$(CscToolPath)\*" />
</ItemGroup>
<MakeDir Directories="$(WebProjectOutputDir)\bin\roslyn" />
<Copy SourceFiles="@(RoslynFiles)" DestinationFolder="$(WebProjectOutputDir)\bin\roslyn" SkipUnchangedFiles="true" Retries="$(CopyRetryCount)" RetryDelayMilliseconds="$(CopyRetryDelayMilliseconds)" />
</Target>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.EJ2, Version=22.2.5.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
<HintPath>packages\Syncfusion.EJ2.MVC4.22.2.5\lib\net40\Syncfusion.EJ2.dll</HintPath>
<Reference Include="Syncfusion.EJ2">
<HintPath>packages\Syncfusion.EJ2.MVC4.26.1.35\lib\net40\Syncfusion.EJ2.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.Licensing, Version=22.2460.5.0, Culture=neutral, PublicKeyToken=632609b4d040f6b4, processorArchitecture=MSIL">
<HintPath>packages\Syncfusion.Licensing.22.2.5\lib\net46\Syncfusion.Licensing.dll</HintPath>
<Reference Include="Syncfusion.Licensing">
<HintPath>packages\Syncfusion.Licensing.26.1.35\lib\net40\Syncfusion.Licensing.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down Expand Up @@ -320,6 +327,7 @@
<Content Include="Content\assets\dbstyle\orgchart_images\OrgTemplateStyle1.json" />
<Content Include="Content\assets\dbstyle\orgchart_images\OrgTemplateStyle2.json" />
<Content Include="Content\assets\dbstyle\orgchart_images\OrgTemplateStyle3.json" />
<None Include="NuGet.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
18 changes: 18 additions & 0 deletions Nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageRestore>
<!-- Allow NuGet to download missing packages -->
<add key="enabled" value="True" />

<!-- Automatically check for missing packages during build in Visual Studio -->
<add key="automatic" value="True" />
</packageRestore>

<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>

<packageSources>
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# ej2-showcase-aspnetmvc-diagram-builder
The aspnet MVC diagram builder application is used to create the diagrams such as "Flow Charts", "MindMap Diagrams" and "Organization Chart" through Visual Interface.

## Deployment

Requirements to run the demo

- Visual Studio 2022 (or)

- Visual Studio 2019



How to run the demo

-Clone the repository.

-Open the DiagramBuilder.sln file using Visual Studio.
### Run

-Press Ctrl + F5 to run the sample.
- Clone the repository.
- Open the DiagramBuilder.csproj file using Visual Studio.
- Press Ctrl + F5 to run the sample.
4 changes: 2 additions & 2 deletions packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<packages>
<package id="Antlr" version="3.5.0.2" targetFramework="net472" />
<package id="bootstrap" version="5.2.3" targetFramework="net472" />
<package id="jQuery" version="3.4.1" targetFramework="net472" />
<package id="jQuery.Validation" version="1.17.0" targetFramework="net472" />
<package id="jQuery" version="3.5.0" targetFramework="net472" />
<package id="jQuery.Validation" version="1.19.4" targetFramework="net472" />
<package id="Microsoft.AspNet.Mvc" version="5.2.9" targetFramework="net472" />
<package id="Microsoft.AspNet.Razor" version="3.2.9" targetFramework="net472" />
<package id="Microsoft.AspNet.Web.Optimization" version="1.1.3" targetFramework="net472" />
Expand Down

0 comments on commit e6cfe64

Please sign in to comment.