Skip to content

Commit 581ad10

Browse files
Merge pull request #33 from GralDispersionModel/UpdateHomepage
Update homepage
2 parents 7d0b18c + df6cfc8 commit 581ad10

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ We are also developing a comprehensive graphical user interface (GUI), in order
1919
* [Visual Studio Code](https://code.visualstudio.com/)
2020

2121
## Official Release and Documentation
22-
The current validated and signed GRAL version, the documentation and a recommendation guide is available at the [GRAL homepage](http://lampz.tugraz.at/~gral/)
22+
The current validated and signed GRAL version, the documentation and a recommendation guide is available at the [GRAL homepage](https://gral.tugraz.at/)
2323

2424
## Contributing
2525
Everyone is invited to contribute to the project [Contributing](Contributing.md)

src/GRAL.csproj

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
6-
<VersionPrefix>22.09.0</VersionPrefix>
5+
<TargetFramework>net7.0</TargetFramework>
6+
<VersionPrefix>23.09.0</VersionPrefix>
77
<Authors>Dietmar Oettl;Markus Kuntner</Authors>
88
<NeutralLanguage>en-US</NeutralLanguage>
99
<AssemblyTitle>GRAL</AssemblyTitle>
1010
<ServerGarbageCollection>true</ServerGarbageCollection>
11-
<RetainVMGarbageCollection>false</RetainVMGarbageCollection>
11+
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
1212
<Optimize>true</Optimize>
1313
<TieredCompilation>true</TieredCompilation>
1414
<TieredCompilationQuickJit>false</TieredCompilationQuickJit>
15+
<DOTNET_TC_QuickJitForLoops>false</DOTNET_TC_QuickJitForLoops>
1516
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
17+
<TieredPGO>true</TieredPGO>
18+
<DOTNET_EnableDiagnostics>false</DOTNET_EnableDiagnostics>
19+
<DOTNET_ENABLE_PROFILING>false</DOTNET_ENABLE_PROFILING>
20+
<RetainVMGarbageCollection>true</RetainVMGarbageCollection>
1621
</PropertyGroup>
1722

1823
</Project>

src/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ static void Main(string[] args)
6666
Console.WriteLine("");
6767
Console.WriteLine("+------------------------------------------------------+");
6868
Console.WriteLine("| |");
69-
string Info = "+ > > G R A L VERSION: 22.09 < < +";
69+
string Info = "+ > > G R A L VERSION: 23.09Beta1 < < +";
7070
Console.WriteLine(Info);
7171
if (RunOnUnix)
7272
{

src/Properties/PublishProfiles/FolderProfile.pubxml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
66
<PropertyGroup>
77
<Configuration>Release</Configuration>
88
<Platform>Any CPU</Platform>
9-
<PublishDir>bin\Release\net6.0\publish\</PublishDir>
9+
<PublishDir>bin\Release\net7.0\publish\</PublishDir>
1010
<PublishProtocol>FileSystem</PublishProtocol>
11-
<TargetFramework>net6</TargetFramework>
11+
<TargetFramework>net7</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
1313
<SelfContained>true</SelfContained>
1414
<PublishSingleFile>True</PublishSingleFile>

0 commit comments

Comments
 (0)