- fixed problem in reporting.csproj file

- fixed bug in C# Validity enum
pull/6/head
Michael Zillgith 10 years ago
parent a6830fb0a8
commit 0fb088320a

@ -1231,8 +1231,8 @@ namespace IEC61850
public enum Validity
{
GOOD = 0,
INVALID = 1,
RESERVED = 2,
RESERVED = 1,
INVALID = 2,
QUESTIONABLE = 3
}

@ -49,13 +49,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Include="ReportingExample.cs" />
<Compile Include="Settings.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
@ -64,12 +58,6 @@
<Name>IEC61850forCSharp</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
<Visible>False</Visible>

Loading…
Cancel
Save