- 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 public enum Validity
{ {
GOOD = 0, GOOD = 0,
INVALID = 1, RESERVED = 1,
RESERVED = 2, INVALID = 2,
QUESTIONABLE = 3 QUESTIONABLE = 3
} }

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

Loading…
Cancel
Save