You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
961 B
XML
23 lines
961 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>iec61850dotnet</RootNamespace>
|
|
<AssemblyName>iec61850dotnet</AssemblyName>
|
|
<AssemblyTitle>IEC61850 API for C#</AssemblyTitle>
|
|
<Company>MZ Automation GmbH</Company>
|
|
<Copyright>Michael Zillgith</Copyright>
|
|
<AssemblyVersion>1.0.%2a</AssemblyVersion>
|
|
<Deterministic>false</Deterministic>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
<DefineConstants>DEBUG;</DefineConstants>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>none</DebugType>
|
|
<OutputPath>bin\Release</OutputPath>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
</Project> |