Updating the Package Version to 1.0.0

This commit is contained in:
Shin Mao 2017-12-07 17:16:43 -08:00 committed by GitHub
parent 51cb3603c5
commit 6b192bdaa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,12 +21,12 @@ Here are the step by step instructions on how to use Xml Serializer Generator in
```
1. Edit the .csproj and add a reference to the Microsoft.XmlSerializer.Generator package. For example,
1. Run command: `dotnet add package Microsoft.XmlSerializer.Generator -v 1.0.0-preview1-25915-02`
1. Run command: `dotnet add package Microsoft.XmlSerializer.Generator -v 1.0.0`
1. Add the following lines in MyApp.csproj,
```xml
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.XmlSerializer.Generator" Version="1.0.0-preview1-25915-02" />
<DotNetCliToolReference Include="Microsoft.XmlSerializer.Generator" Version="1.0.0" />
</ItemGroup>
```
1. Add a class in the application. For example, add the class below in Program.cs,