Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit d2373f7

Browse files
author
Ihar Yakimush
committed
add build.ps1 and resign
1 parent 9fa5114 commit d2373f7

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

Community.Data.OData.Linq.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.OData.Linq.xTests
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9CBF15A2-B552-47EB-B2A1-475E4B05A4CA}"
1111
ProjectSection(SolutionItems) = preProject
12+
build.ps1 = build.ps1
1213
LICENSE = LICENSE
1314
README.md = README.md
1415
TODO.txt = TODO.txt

Community.Data.OData.Linq.xTests/Community.OData.Linq.xTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<IsPackable>false</IsPackable>
77

8-
<SignAssembly>true</SignAssembly>
8+
<SignAssembly>false</SignAssembly>
99

1010
<AssemblyOriginatorKeyFile>Sign.pfx</AssemblyOriginatorKeyFile>
1111
</PropertyGroup>

Community.Data.OData.Linq/Community.OData.Linq.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<SignAssembly>true</SignAssembly>
6-
<AssemblyOriginatorKeyFile>Sign.pfx</AssemblyOriginatorKeyFile>
6+
<AssemblyOriginatorKeyFile>sgn.snk</AssemblyOriginatorKeyFile>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
99
<Authors>IharYakimush</Authors>

Community.Data.OData.Linq/sgn.snk

596 Bytes
Binary file not shown.

build.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
if(Test-Path .\artifacts) { Remove-Item .\artifacts -Force -Recurse }
2+
3+
dotnet restore .\Community.Data.OData.Linq\Community.OData.Linq.csproj
4+
5+
dotnet build .\Community.Data.OData.Linq\Community.OData.Linq.csproj -c Release
6+
7+
# dotnet pack .\Community.Data.OData.Linq\Community.OData.Linq.csproj -c Release -o .\artifacts

0 commit comments

Comments
 (0)