Skip to content

Commit 834ea39

Browse files
committed
update
1 parent 6433bc9 commit 834ea39

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

Diff for: FastModularExponentiation.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.9.34714.143
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FastModularExponentiation.Test", "FastModularExponentiationTest\FastModularExponentiation.Test.csproj", "{2ACD9A23-1C7C-4918-B877-6C749A46CA4B}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FastModularExponentiation.Tests", "FastModularExponentiationTest\FastModularExponentiation.Tests.csproj", "{2ACD9A23-1C7C-4918-B877-6C749A46CA4B}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastModularExponentiation", "FastModularExponentiation\FastModularExponentiation.csproj", "{E36D9AAA-5933-4198-BA6E-8B3BDACB41E6}"
99
EndProject

Diff for: FastModularExponentiation/FastModularExponentiation.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<Authors>Łukasz Górski</Authors>
99
<Copyright>Copyright © 2024 Łukasz Górski</Copyright>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
11+
<RepositoryUrl>https://github.com/lukegor/FastModularExponentiation</RepositoryUrl>
1112
</PropertyGroup>
1213

1314
</Project>

Diff for: FastModularExponentiation/Program.cs

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ static void Main(string[] args)
1313
int result = ModularExponentiation(y, exp, mod);
1414
Console.WriteLine();
1515
Console.WriteLine($"Result: {result}");
16+
17+
Console.WriteLine();
18+
Console.WriteLine("Press any key to exit...");
19+
Console.ReadLine();
1620
}
1721

1822
static int ReadInteger(string prompt)

Diff for: FastModularExponentiationTest/FastModularExponentiation.Test.csproj renamed to FastModularExponentiationTest/FastModularExponentiation.Tests.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<Authors>Łukasz Górski</Authors>
1111
<Copyright>Copyright © 2024 Łukasz Górski</Copyright>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13+
<RepositoryUrl>https://github.com/lukegor/FastModularExponentiation</RepositoryUrl>
1314
</PropertyGroup>
1415

1516
<ItemGroup>

0 commit comments

Comments
 (0)