Skip to content

Commit

Permalink
Use VS 2017 image
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Ganss committed Sep 18, 2018
1 parent 720aca5 commit bd8f057
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
40 changes: 20 additions & 20 deletions XmlSchemaClassGenerator/Particle.cs
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Schema;

namespace XmlSchemaClassGenerator
{
public class Particle
{
public Particle(XmlSchemaParticle particle, XmlSchemaObject parent)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Schema;

namespace XmlSchemaClassGenerator
{
public class Particle
{
public Particle(XmlSchemaParticle particle, XmlSchemaObject parent)
{
XmlParticle = particle;
XmlParent = parent;
MinOccurs = particle.MinOccurs;
MaxOccurs = particle.MaxOccurs;
MinOccurs = particle.MinOccurs;
MaxOccurs = particle.MaxOccurs;
}

public XmlSchemaParticle XmlParticle { get; set; }
public XmlSchemaObject XmlParent { get; }
public decimal MaxOccurs { get; set; }
public decimal MinOccurs { get; set; }
}
}
public XmlSchemaParticle XmlParticle { get; set; }
public XmlSchemaObject XmlParent { get; }
public decimal MaxOccurs { get; set; }
public decimal MinOccurs { get; set; }
}
}
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.0.{build}
skip_tags: true
image: Visual Studio 2017 Preview
image: Visual Studio 2017
environment:
access_token:
secure: Eq6BjtZ80BXKLwFMg76IjuQAvbLjbojIF/X/ARouGVhxPneJtgDfCXMPNgJ7KBKq
Expand Down

0 comments on commit bd8f057

Please sign in to comment.