├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── Service_Fabric_ReleaseNotes_65.pdf ├── azure-pipelines.yml ├── docs_resources └── SF_VM_Cost_calculator-NEW.xlsx ├── release_notes ├── Service-Fabric-70CU2-releasenotes.md ├── Service-Fabric-70CU3-releasenotes.md ├── Service-Fabric-70CU4-releasenotes.md ├── Service_Fabric_ReleaseNotes_65.pdf ├── Service_Fabric_ReleaseNotes_65CU1.pdf ├── Service_Fabric_ReleaseNotes_65CU2.pdf ├── Service_Fabric_ReleaseNotes_65CU3.pdf ├── Service_Fabric_ReleaseNotes_65CU5.md └── Service_Fabric_ReleaseNotes_70.md └── service-fabric.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Service_Fabric_ReleaseNotes_65.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/Service_Fabric_ReleaseNotes_65.pdf -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs_resources/SF_VM_Cost_calculator-NEW.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/docs_resources/SF_VM_Cost_calculator-NEW.xlsx -------------------------------------------------------------------------------- /release_notes/Service-Fabric-70CU2-releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service-Fabric-70CU2-releasenotes.md -------------------------------------------------------------------------------- /release_notes/Service-Fabric-70CU3-releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service-Fabric-70CU3-releasenotes.md -------------------------------------------------------------------------------- /release_notes/Service-Fabric-70CU4-releasenotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service-Fabric-70CU4-releasenotes.md -------------------------------------------------------------------------------- /release_notes/Service_Fabric_ReleaseNotes_65.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service_Fabric_ReleaseNotes_65.pdf -------------------------------------------------------------------------------- /release_notes/Service_Fabric_ReleaseNotes_65CU1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service_Fabric_ReleaseNotes_65CU1.pdf -------------------------------------------------------------------------------- /release_notes/Service_Fabric_ReleaseNotes_65CU2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service_Fabric_ReleaseNotes_65CU2.pdf -------------------------------------------------------------------------------- /release_notes/Service_Fabric_ReleaseNotes_65CU3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service_Fabric_ReleaseNotes_65CU3.pdf -------------------------------------------------------------------------------- /release_notes/Service_Fabric_ReleaseNotes_65CU5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service_Fabric_ReleaseNotes_65CU5.md -------------------------------------------------------------------------------- /release_notes/Service_Fabric_ReleaseNotes_70.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/release_notes/Service_Fabric_ReleaseNotes_70.md -------------------------------------------------------------------------------- /service-fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/service-fabric/HEAD/service-fabric.png --------------------------------------------------------------------------------