-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathARServer.csproj
More file actions
31 lines (31 loc) · 1.47 KB
/
ARServer.csproj
File metadata and controls
31 lines (31 loc) · 1.47 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>ArServer</AssemblyName>
<RootNamespace>Ari61850Bridge</RootNamespace>
<ApplicationIcon>Assets\app-icon.ico</ApplicationIcon>
<Authors>masarray</Authors>
<Description>Open-source Windows IEC 61850 MMS to Modbus TCP and MQTT gateway for HMI, SCADA, relay testing, FAT/SAT, and substation automation labs.</Description>
<Version>1.0.1</Version>
<PackageTags>iec61850;iec-61850;mms;modbus-tcp;mqtt;scada;hmi;substation-automation;relay-testing;wpf;dotnet;windows</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/masarray/arserver</RepositoryUrl>
<PackageProjectUrl>https://github.com/masarray/arserver</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<Resource Include="Assets\gateway-hero.png" />
<Resource Include="Assets\app-icon.png" />
<Resource Include="Assets\app-icon.ico" />
<Resource Include="Assets\app-icon-256.png" />
<Resource Include="Assets\arserver-logo-horizontal.png" />
<Resource Include="Assets\arserver-logo-header.png" />
<Resource Include="Assets\arserver-logo-light.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MQTTnet" Version="5.1.0.1559" />
</ItemGroup>
</Project>