Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update Build Props, Add Publish Scripts |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | main |
Files: | files | file ages | folders |
SHA3-256: |
1fd2341df45b65b46de0c8c98c4aa592 |
User & Date: | charles@cmiles.info 2024-09-14 17:56:22.000 |
Context
2024-09-17
| ||
21:34 | Publish Setup Updates check-in: 5fa8286050 user: charles@cmiles.info tags: main, trunk | |
2024-09-14
| ||
17:56 | Update Build Props, Add Publish Scripts check-in: 1fd2341df4 user: charles@cmiles.info tags: main, trunk | |
17:00 | Package Updates, Date Based Versioning in Project Files, Http Gui Updates check-in: f4bed4ba97 user: charles@cmiles.info tags: main, trunk | |
Changes
Changes to Directory.Build.props.
1 2 3 4 | <Project> <PropertyGroup> <LangVersion>latest</LangVersion> <TargetFramework>net8.0</TargetFramework> | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | <Project> <PropertyGroup> <LangVersion>latest</LangVersion> <TargetFramework>net8.0</TargetFramework> <RuntimeIdentifier>linux-arm64</RuntimeIdentifier> <PlatformTarget>arm64</PlatformTarget> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <PropertyGroup> <DebugType>embedded</DebugType> </PropertyGroup> </Project> |
Added Publish-All.ps1.
> > > > > > > | 1 2 3 4 5 6 7 | .\Publish-PiSlicedDayPhotos.ps1 cd TimelapseHelper .\Publish-TimelapseHelperConsole.ps1 .\Publish-TimelapseHelperGui.ps1 cd .. |
Added Publish-PiSlicedDayPhotos.ps1.
> | 1 | dotnet publish .\PiSlicedDayPhotos\PiSlicedDayPhotos.csproj /p:PublishProfile=.\PiSlicedDayPhotos\Properties\PublishProfiles\FolderProfile.pubxml |