-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdss_sharp.csproj
56 lines (51 loc) · 3.3 KB
/
dss_sharp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netstandard2.0;net45</TargetFrameworks>
<Nullable>disable</Nullable>
<ProjectGuid>{398768E0-151E-4974-8A2A-2DD2724F6426}</ProjectGuid>
<DocumentationFile>dss_sharp.xml</DocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<NoWarn>1591</NoWarn>
<PlatformTarget>x64</PlatformTarget>
<Authors>Paulo Meira, DSS-Extensions contributors</Authors>
<PackageVersion>0.14.3</PackageVersion>
<Title>DSS Sharp</Title>
<Description>
DSS Sharp is a C# wrapper to the native DSS C-API library, a multiplatform multiarchitecture implementation of EPRI's OpenDSS engine.
Although not an official project from EPRI, DSS Sharp exposes an organization of classes that mimics the official OpenDSS COM implementation, which is Windows-only -- that is, users often can replace or even "#IFDEF" the usage of the official Windows-only implementation with DSS Sharp. Since DSS Sharp uses our C-API directly, it's also common to achieve better performance.
Extra features include support for .DSS scripts in ZIP files, creation of multiple DSS instances in the same process (including user-controlled multi-threading), and an extended API for various components.
DSS Sharp is part of the DSS-Extensions group of projects. See more at https://dss-extensions.org/
</Description>
<PackageId>dss_sharp</PackageId>
<license>BSD-3-Clause AND LGPL</license>
<AssemblyVersion>0.14.3.0</AssemblyVersion>
<FileVersion>0.14.3.0</FileVersion>
<PackageProjectUrl>https://github.com/dss-extensions/dss_sharp/</PackageProjectUrl>
<PackageTags>dss;opendss;linux;windows;macos;dss-extensions;powerflow;distribution;electric;simulator</PackageTags>
<PackageIcon>docs/images/dss_sharp.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="examples/**" />
<None Remove="examples/**" />
<Content Remove="examples/**" />
<EmbeddedResource Remove="examples/**" />
<None Include="docs/images/dss_sharp.png" Pack="True" PackagePath="docs/images/" />
<Content Include="messages/**" Pack="True">
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
<Content Include="runtimes/**" PackagePath="runtimes" Visible="false" />
<None Include="README.md" Pack="true" PackagePath="/"/>
<None Include="README.pt-BR.md" Pack="true" PackagePath="/"/>
<None Include="LICENSE" Pack="true" PackagePath="/"/>
<None Include="OPENDSS_LICENSE" Pack="true" PackagePath="/"/>
<None Include="KLUSOLVE_LICENSE.txt" Pack="true" PackagePath="/"/>
<None Include="dss_sharp.targets" Pack="true" PackagePath="build/">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="runtimes/win-x64/native/dss_capi.dll" Pack="true" PackagePath="build/x64/" />
<None Include="runtimes/win-x64/native/libklusolvex.dll" Pack="true" PackagePath="build/x64/" />
<None Include="runtimes/win-x64/native/libwinpthread-1.dll" Pack="true" PackagePath="build/x64/" />
<None Include="runtimes/win-x86/native/dss_capi.dll" Pack="true" PackagePath="build/x86/" />
<None Include="runtimes/win-x86/native/libklusolvex.dll" Pack="true" PackagePath="build/x86/" />
</ItemGroup>
</Project>