10000 VS-147: Set correct assembly version on build by BorisDog · Pull Request #70 · mongodb/mongo-csharp-analyzer · GitHub
[go: up one dir, main page]

Skip to content

VS-147: Set correct assembly version on build #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion evergreen/run-pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fi
echo Creating nuget package...

dotnet clean "./MongoDB.Analyzer.sln"
dotnet build "./MongoDB.Analyzer.sln" -c Release
dotnet build "./MongoDB.Analyzer.sln" -c Release -p:Version="$PACKAGE_VERSION"
dotnet pack ./src/MongoDB.Analyzer.Package/MongoDB.Analyzer.Package.csproj -o ./artifacts/nuget -c Release -p:Version="$PACKAGE_VERSION" -p:ContinuousIntegrationBuild=true

echo "${ARTIFACTORY_PASSWORD}" | docker login --password-stdin --username "${ARTIFACTORY_USERNAME}" artifactory.corp.mongodb.com
Expand Down
2 changes: 0 additions & 2 deletions src/MongoDB.Analyzer/MongoDB.Analyzer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@

<PackageId>MongoDBAnalyzerCore</PackageId>

<AssemblyVersion>1.3.0.0</AssemblyVersion>
<Company>MongoDB Inc.</Company>
<Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
<Description>MongoDB Roslyn analyzer for MongoDB .Net driver.</Description>
<InformationalVersion>1.3.0</InformationalVersion>
<Product>MongoDB.Analyzer</Product>
<ImplicitUsings>enable</ImplicitUsings>

Expand Down
0