diff --git a/Directory.Build.props b/Directory.Build.props new file mode 100644 index 000000000..a2c907aec --- /dev/null +++ b/Directory.Build.props @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/Elfie/Elfie/Elfie.csproj b/Elfie/Elfie/Elfie.csproj index ed9493bab..de36de469 100644 --- a/Elfie/Elfie/Elfie.csproj +++ b/Elfie/Elfie/Elfie.csproj @@ -12,7 +12,7 @@ - 1.0.0-rc14 + 1.0.0 Microsoft Extensible Lightweight Fast Indexed Entities (ELFIE) An extensible library for fast indexing of code artifacts. diff --git a/Elfie/Shared/VersionConstants.cs b/Elfie/Shared/VersionConstants.cs index 14fd1cc26..e929416b0 100644 --- a/Elfie/Shared/VersionConstants.cs +++ b/Elfie/Shared/VersionConstants.cs @@ -5,9 +5,9 @@ namespace Microsoft.CodeAnalysis.Elfie { public static class VersionConstants { - public const string Prerelease = "-rc14"; + public const string Prerelease = ""; public const string AssemblyVersion = "1.0.0"; - public const string FileVersion = AssemblyVersion + ".15"; + public const string FileVersion = AssemblyVersion + ".16"; public const string Version = AssemblyVersion + Prerelease; } }